author
int64
658
755k
date
stringlengths
19
19
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
list
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
36,268
29.04.2021 18:40:13
-28,800
8297be3c6249d9b5f4975f36e17148852698a8ba
Add manage docs for k8s
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/kubernetes-deployment.md", "diff": "@@ -79,6 +79,60 @@ The configuration file is `values.yaml`, and the [DolphinScheduler Kubernetes Co\n## FAQ\n+### How to view the logs of a pod container?\n+\n+List all pods (aka `po`):\n+\n+```\n+kubectl get po\n+kubectl get po -n test # with test namespace\n+```\n+\n+View the logs of a pod container named dolphinscheduler-master-0:\n+\n+```\n+kubectl logs dolphinscheduler-master-0\n+kubectl logs -f dolphinscheduler-master-0 # follow log output\n+kubectl logs --tail 10 dolphinscheduler-master-0 -n test # show last 10 lines from the end of the logs\n+```\n+\n+### How to scale api, master and worker on Kubernetes?\n+\n+List all deployments (aka `deploy`):\n+\n+```\n+kubectl get deploy\n+kubectl get deploy -n test # with test namespace\n+```\n+\n+Scale api to 3 replicas:\n+\n+```\n+kubectl scale --replicas=3 deploy dolphinscheduler-api\n+kubectl scale --replicas=3 deploy dolphinscheduler-api -n test # with test namespace\n+```\n+\n+List all statefulsets (aka `sts`):\n+\n+```\n+kubectl get sts\n+kubectl get sts -n test # with test namespace\n+```\n+\n+Scale master to 2 replicas:\n+\n+```\n+kubectl scale --replicas=2 sts dolphinscheduler-master\n+kubectl scale --replicas=2 sts dolphinscheduler-master -n test # with test namespace\n+```\n+\n+Scale worker to 6 replicas:\n+\n+```\n+kubectl scale --replicas=6 sts dolphinscheduler-worker\n+kubectl scale --replicas=6 sts dolphinscheduler-worker -n test # with test namespace\n+```\n+\n### How to use MySQL as the DolphinScheduler's database instead of PostgreSQL?\nNot yet supported, the version 1.3.6 will support\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "diff": "@@ -127,6 +127,60 @@ The configuration file is `values.yaml`, and the [Appendix-Configuration](#appen\n## FAQ\n+### How to view the logs of a pod container?\n+\n+List all pods (aka `po`):\n+\n+```\n+kubectl get po\n+kubectl get po -n test # with test namespace\n+```\n+\n+View the logs of a pod container named dolphinscheduler-master-0:\n+\n+```\n+kubectl logs dolphinscheduler-master-0\n+kubectl logs -f dolphinscheduler-master-0 # follow log output\n+kubectl logs --tail 10 dolphinscheduler-master-0 -n test # show last 10 lines from the end of the logs\n+```\n+\n+### How to scale api, master and worker on Kubernetes?\n+\n+List all deployments (aka `deploy`):\n+\n+```\n+kubectl get deploy\n+kubectl get deploy -n test # with test namespace\n+```\n+\n+Scale api to 3 replicas:\n+\n+```\n+kubectl scale --replicas=3 deploy dolphinscheduler-api\n+kubectl scale --replicas=3 deploy dolphinscheduler-api -n test # with test namespace\n+```\n+\n+List all statefulsets (aka `sts`):\n+\n+```\n+kubectl get sts\n+kubectl get sts -n test # with test namespace\n+```\n+\n+Scale master to 2 replicas:\n+\n+```\n+kubectl scale --replicas=2 sts dolphinscheduler-master\n+kubectl scale --replicas=2 sts dolphinscheduler-master -n test # with test namespace\n+```\n+\n+Scale worker to 6 replicas:\n+\n+```\n+kubectl scale --replicas=6 sts dolphinscheduler-worker\n+kubectl scale --replicas=6 sts dolphinscheduler-worker -n test # with test namespace\n+```\n+\n### How to use MySQL as the DolphinScheduler's database instead of PostgreSQL?\n> Because of the commercial license, we cannot directly use the driver of MySQL.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add manage docs for k8s
36,268
29.04.2021 20:45:50
-28,800
8db80dbc105a54ee0728b1aa7cf8b5e652ce3d97
Translate K8s FAQ from English to Chinese
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "diff": "@@ -468,7 +468,7 @@ common:\n> **Note**: `storageClassName` must support the access mode: `ReadWriteMany`\n-2. Put the Hadoop into the nfs\n+2. Copy the Hadoop into the directory `/opt/soft`\n3. Ensure that `$HADOOP_HOME` and `$HADOOP_CONF_DIR` are correct\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Translate K8s FAQ from English to Chinese (#343)
36,268
29.04.2021 22:50:18
-28,800
aa4cfade3fbc319921087cc0fd8cf4992cb0d5cb
Update docker deployment on Windows with Docker Toolbox
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.4/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.4/user_doc/docker-deployment.md", "diff": "@@ -77,7 +77,7 @@ $ docker run -d --name dolphinscheduler \\\napache/dolphinscheduler:1.3.4 all\n```\n-Note: database username and password need to be replaced with your database username and password, 192.168.x.x need to be replaced with your relate zookeeper or database host IP\n+Note: database username test and password test need to be replaced with your actual PostgreSQL username and password, 192.168.x.x need to be replaced with your relate PostgreSQL and ZooKeeper host IP\n#### 6. Login\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "diff": "@@ -77,7 +77,7 @@ $ docker run -d --name dolphinscheduler \\\napache/dolphinscheduler:1.3.5 all\n```\n-Note: database username and password need to be replaced with your database username and password, 192.168.x.x need to be replaced with your relate zookeeper or database host IP\n+Note: database username test and password test need to be replaced with your actual PostgreSQL username and password, 192.168.x.x need to be replaced with your relate PostgreSQL and ZooKeeper host IP\n#### 6. Login\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -13,6 +13,22 @@ Here're 3 ways to quickly install DolphinScheduler\nIn this way, you need to install [docker-compose](https://docs.docker.com/compose/) as a prerequisite, please install it yourself according to the rich docker-compose installation guidance on the Internet\n+For Windows 10, you can install [Docker Desktop](https://docs.docker.com/docker-for-windows/install/). For Windows 7, 8 and 8.1, you can install [Docker Toolbox](https://github.com/docker/toolbox)\n+\n+#### 0. Requirements\n+\n+For Mac user, please configure memory not less than 4GB (Click `Docker Desktop -> Preferences -> Resources -> Memory`)\n+\n+For Windows Docker Toolbox user, three items need to be configured:\n+\n+ - Ensure that **hardware virtualization** is enabled which may need to set the BIOS\n+ - Configure memory not less than 4G\n+ - Open **Oracle VirtualBox Manager**, if you double-click **Docker Quickstart Terminal** and successfully run Docker Toolbox, you will see a Virtual Machine named `default`\n+ - Click `Settings -> System -> Motherboard -> Base Memory`\n+ - Configure port forwarding\n+ - Click `Settings -> Network -> Advanced -> Port Forwarding -> Add`\n+ - `Name`, `Host Port` and `Guest Port` all fill in `12345`, regardless of `Host IP` and `Guest IP`\n+\n#### 1. Download the Source Code Package\nPlease download the latest version of the source code package, download address: [download](/en-us/download/download.html)\n@@ -32,6 +48,14 @@ $ docker tag apache/dolphinscheduler:1.3.6 apache/dolphinscheduler:latest\n$ docker-compose up -d\n```\n+##### 2.1 For Docker Toolbox on Windows\n+\n+Just double-click **Docker Quickstart Terminal** and type the above commands\n+\n+##### 2.2 For Docker Desktop on Windows\n+\n+Coming soon\n+\n#### 3. Login\nVisit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler\n@@ -77,7 +101,7 @@ $ docker run -d --name dolphinscheduler \\\napache/dolphinscheduler:1.3.6 all\n```\n-Note: database username and password need to be replaced with your database username and password, 192.168.x.x need to be replaced with your relate zookeeper or database host IP\n+Note: database username test and password test need to be replaced with your actual PostgreSQL username and password, 192.168.x.x need to be replaced with your relate PostgreSQL and ZooKeeper host IP\n#### 6. Login\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Update docker deployment on Windows with Docker Toolbox (#345)
36,268
29.04.2021 23:06:26
-28,800
37b070280b750268e15edb49efc4006a364c235b
Update Windows version requirements with Docker Toolbox
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -13,7 +13,7 @@ Here're 3 ways to quickly install DolphinScheduler\nIn this way, you need to install [docker-compose](https://docs.docker.com/compose/) as a prerequisite, please install it yourself according to the rich docker-compose installation guidance on the Internet\n-For Windows 10, you can install [Docker Desktop](https://docs.docker.com/docker-for-windows/install/). For Windows 7, 8 and 8.1, you can install [Docker Toolbox](https://github.com/docker/toolbox)\n+For Windows 7-10, you can install [Docker Toolbox](https://github.com/docker/toolbox/releases). For Windows 10 64 bit, you can install [Docker Desktop](https://docs.docker.com/docker-for-windows/install/), and pay attention to the [system requirements](https://docs.docker.com/docker-for-windows/install/#system-requirements)\n#### 0. Requirements\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Update Windows version requirements with Docker Toolbox (#346)
36,268
30.04.2021 13:02:12
-28,800
c92f486c45d451231560e913b40a1f1c6508297a
Update Windows Docker Desktop Requirements and Deployment
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.4/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.4/user_doc/docker-deployment.md", "diff": "@@ -15,17 +15,12 @@ In this way, you need to install [docker-compose](https://docs.docker.com/compos\n#### 1. Download the Source Code Package\n-Please download the latest version of the source code package, download address: [download](/en-us/download/download.html)\n-\n-After downloading apache-dolphinscheduler-incubating-1.3.4-src.zip, uncompress it\n-\n-```\n-$ unzip apache-dolphinscheduler-incubating-1.3.4-src.zip\n-```\n+Please download the source code package apache-dolphinscheduler-incubating-1.3.4-src.zip, download address: [download](/en-us/download/download.html)\n#### 2. Pull Image and Start the Service\n```\n+$ unzip apache-dolphinscheduler-incubating-1.3.4-src.zip\n$ cd apache-dolphinscheduler-incubating-1.3.4-src-release/docker/docker-swarm\n$ docker pull apache/dolphinscheduler:1.3.4\n$ docker tag apache/dolphinscheduler:1.3.4 apache/dolphinscheduler:latest\n@@ -34,7 +29,7 @@ $ docker-compose up -d\n#### 3. Login\n-Visit the Web UI: http://192.168.xx.xx:8888\n+Visit the Web UI: http://192.168.xx.xx:8888 (The local address is http://127.0.0.1:8888)\nThe default username is `admin` and the default password is `dolphinscheduler123`\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "diff": "@@ -15,17 +15,12 @@ In this way, you need to install [docker-compose](https://docs.docker.com/compos\n#### 1. Download the Source Code Package\n-Please download the latest version of the source code package, download address: [download](/en-us/download/download.html)\n-\n-After downloading apache-dolphinscheduler-incubating-1.3.5-src.zip, uncompress it\n-\n-```\n-$ unzip apache-dolphinscheduler-incubating-1.3.5-src.zip\n-```\n+Please download the source code package apache-dolphinscheduler-incubating-1.3.5-src.zip, download address: [download](/en-us/download/download.html)\n#### 2. Pull Image and Start the Service\n```\n+$ unzip apache-dolphinscheduler-incubating-1.3.5-src.zip\n$ cd apache-dolphinscheduler-incubating-1.3.5-src-release/docker/docker-swarm\n$ docker pull apache/dolphinscheduler:1.3.5\n$ docker tag apache/dolphinscheduler:1.3.5 apache/dolphinscheduler:latest\n@@ -34,7 +29,7 @@ $ docker-compose up -d\n#### 3. Login\n-Visit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler\n+Visit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)\nThe default username is `admin` and the default password is `dolphinscheduler123`\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/kubernetes-deployment.md", "diff": "## Installing the Chart\n-Please download the latest version of the source code package, download address: [download](/en-us/download/download.html)\n-\n-After downloading apache-dolphinscheduler-incubating-1.3.5-src.zip, uncompress it\n+Please download the source code package apache-dolphinscheduler-incubating-1.3.5-src.zip, download address: [download](/en-us/download/download.html)\nTo install the chart with the release name `dolphinscheduler`, please execute the following commands:\n@@ -49,7 +47,7 @@ $ kubectl port-forward --address 0.0.0.0 -n test svc/dolphinscheduler-api 12345:\n> **Tip**: If the error of `unable to do port forwarding: socat not found` appears, you need to install `socat` at first\n-And then access the web: http://192.168.xx.xx:12345/dolphinscheduler\n+And then access the web: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)\nThe default username is `admin` and the default password is `dolphinscheduler123`\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -13,52 +13,44 @@ Here're 3 ways to quickly install DolphinScheduler\nIn this way, you need to install [docker-compose](https://docs.docker.com/compose/) as a prerequisite, please install it yourself according to the rich docker-compose installation guidance on the Internet\n-For Windows 7-10, you can install [Docker Toolbox](https://github.com/docker/toolbox/releases). For Windows 10 64 bit, you can install [Docker Desktop](https://docs.docker.com/docker-for-windows/install/), and pay attention to the [system requirements](https://docs.docker.com/docker-for-windows/install/#system-requirements)\n+For Windows 7-10, you can install [Docker Toolbox](https://github.com/docker/toolbox/releases). For Windows 10 64-bit, you can install [Docker Desktop](https://docs.docker.com/docker-for-windows/install/), and pay attention to the [system requirements](https://docs.docker.com/docker-for-windows/install/#system-requirements)\n-#### 0. Requirements\n+#### 0. Configure memory not less than 4GB\n-For Mac user, please configure memory not less than 4GB (Click `Docker Desktop -> Preferences -> Resources -> Memory`)\n+For Mac user, click `Docker Desktop -> Preferences -> Resources -> Memory`\n-For Windows Docker Toolbox user, three items need to be configured:\n+For Windows Docker Toolbox user, two items need to be configured:\n- - Ensure that **hardware virtualization** is enabled which may need to set the BIOS\n- - Configure memory not less than 4G\n- - Open **Oracle VirtualBox Manager**, if you double-click **Docker Quickstart Terminal** and successfully run Docker Toolbox, you will see a Virtual Machine named `default`\n- - Click `Settings -> System -> Motherboard -> Base Memory`\n- - Configure port forwarding\n- - Click `Settings -> Network -> Advanced -> Port Forwarding -> Add`\n- - `Name`, `Host Port` and `Guest Port` all fill in `12345`, regardless of `Host IP` and `Guest IP`\n+ - **Memory**: Open Oracle VirtualBox Manager, if you double-click Docker Quickstart Terminal and successfully run Docker Toolbox, you will see a Virtual Machine named `default`. And click `Settings -> System -> Motherboard -> Base Memory`\n+ - **Port Forwarding**: Click `Settings -> Network -> Advanced -> Port forwarding -> Add`. `Name`, `Host Port` and `Guest Port` all fill in `12345`, regardless of `Host IP` and `Guest IP`\n-#### 1. Download the Source Code Package\n-\n-Please download the latest version of the source code package, download address: [download](/en-us/download/download.html)\n+For Windows Docker Desktop user\n+ - **Hyper-V mode**: Click `Docker Desktop -> Settings -> Resources -> Memory`\n+ - **WSL 2 mode**: Refer to [WSL 2 utility VM](https://docs.microsoft.com/en-us/windows/wsl/wsl-config#configure-global-options-with-wslconfig)\n-After downloading apache-dolphinscheduler-1.3.6-src.tar.gz, uncompress it\n+#### 1. Download the Source Code Package\n-```\n-$ tar -zxvf apache-dolphinscheduler-1.3.6-src.tar.gz\n-```\n+Please download the source code package apache-dolphinscheduler-1.3.6-src.tar.gz, download address: [download](/en-us/download/download.html)\n#### 2. Pull Image and Start the Service\n+> For Mac and Linux user, open **Terminal**\n+> For Windows Docker Toolbox user, open **Docker Quickstart Terminal**\n+> For Windows Docker Desktop user, open **Windows PowerShell**\n+\n```\n+$ tar -zxvf apache-dolphinscheduler-1.3.6-src.tar.gz\n$ cd apache-dolphinscheduler-1.3.6-src/docker/docker-swarm\n$ docker pull apache/dolphinscheduler:1.3.6\n$ docker tag apache/dolphinscheduler:1.3.6 apache/dolphinscheduler:latest\n$ docker-compose up -d\n```\n-##### 2.1 For Docker Toolbox on Windows\n-\n-Just double-click **Docker Quickstart Terminal** and type the above commands\n-\n-##### 2.2 For Docker Desktop on Windows\n-\n-Coming soon\n+> PowerShell should use `cd apache-dolphinscheduler-1.3.6-src\\docker\\docker-swarm`\n#### 3. Login\n-Visit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler\n+Visit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)\nThe default username is `admin` and the default password is `dolphinscheduler123`\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "diff": "## Installing the Chart\n-Please download the latest version of the source code package, download address: [download](/en-us/download/download.html)\n-\n-After downloading apache-dolphinscheduler-1.3.6-src.tar.gz, uncompress it\n+Please download the source code package apache-dolphinscheduler-1.3.6-src.tar.gz, download address: [download](/en-us/download/download.html)\nTo install the chart with the release name `dolphinscheduler`, please execute the following commands:\n@@ -49,7 +47,7 @@ $ kubectl port-forward --address 0.0.0.0 -n test svc/dolphinscheduler-api 12345:\n> **Tip**: If the error of `unable to do port forwarding: socat not found` appears, you need to install `socat` at first\n-And then access the web: http://192.168.xx.xx:12345/dolphinscheduler\n+And then access the web: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)\nOr when `api.service.type=NodePort` you need to execute the command:\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Update Windows Docker Desktop Requirements and Deployment (#347)
36,348
30.04.2021 18:20:21
-28,800
c7275884f3d78c65585516df6646ad1d240d7ce2
Add events&news to the home page.
[ { "change_type": "MODIFY", "old_path": "src/pages/home/index.jsx", "new_path": "src/pages/home/index.jsx", "diff": "@@ -8,6 +8,8 @@ import Language from '../../components/language';\nimport Item from './featureItem';\nimport homeConfig from '../../../site_config/home';\nimport './index.scss';\n+import Slider from '../../components/slider';\n+import EventCard from '../community/eventCard';\nclass Home extends Language {\nconstructor(props) {\n@@ -119,14 +121,14 @@ class Home extends Language {\n}\n</ul>\n</section>\n- {/* <section className=\"news-section\">\n- <div className=\"news-body\">\n- <div className=\"news\">\n- <h3>{dataSource.news.title}</h3>\n- <p>{dataSource.news.desc}</p>\n- </div>\n- </div>\n- </section> */}\n+ <section className=\"events-section\">\n+ <h3>{dataSource.events.title}</h3>\n+ <Slider>\n+ {dataSource.events.list.map((event, i) => (\n+ <EventCard event={event} key={i} />\n+ ))}\n+ </Slider>\n+ </section>\n<Footer logo=\"/img/ds_gray.svg\" language={language} />\n</div>\n);\n" }, { "change_type": "MODIFY", "old_path": "src/pages/home/index.scss", "new_path": "src/pages/home/index.scss", "diff": "text-align: center;\n}\n}\n- .news-section {\n- background: #F9FAFA;\n- position: relative;\n- .news-body {\n- height: 600px;\n- text-align: center;\n- display: flex;\n- justify-content: center;\n- }\n- .news{\n- position: relative;\n- color: #333;\n- margin: 80px auto;\n- h3 {\n- font-family: Avenir-Heavy;\n- font-size: 36px;\n- color: #333;\n- width: 940px;\n- height: 54px;\n- }\n- p {\n- font-family: Avenir-Heavy;\n- font-size: 36px;\n- color: #333;\n- width: 940px;\n- height: 54px;\n- }\n- }\n-\n- }\n.introduction-section {\nbackground: #F9FAFA;\n.introduction-body {\nbackground-image: linear-gradient(0deg, $startColor 0%, $intermediateColor 51%, $endColor 100%);\n}\n.introduction {\n- //display: inline-block;\n- //width: calc(100% - 726px);\nmin-width: 300px;\n- //max-width: 790px;\nmargin: 80px auto 0px auto;\nh3 {\nfont-family: Avenir-Heavy;\nmargin: 0;\nli {\nwidth: 240px;\n- height: 430px;\n+ height: 360px;\ntext-align: center;\nvertical-align: top;\ndisplay: inline-block;\n}\nimg {\nmargin: 20px auto;\n- // vertical-align: top;\nwidth: 74px;\nheight: 74px;\n- // margin-right: 20px;\ndisplay: block;\n}\ndiv {\n}\n}\n}\n+ .events-section {\n+ max-width: $contentWidth;\n+ margin: 0 auto 50px;\n+ box-sizing: border-box;\n+ @media screen and (max-width: $mobileWidth) {\n+ padding: 0;\n+ }\n+ h3 {\n+ font-family: Avenir-Heavy;\n+ font-size: 36px;\n+ color: #333;\n+ text-align: center;\n+ margin: 0 0 80px;\n+ }\n+ .event-card {\n+ width: 373px;\n+ font-size: 0;\n+ img {\n+ width: 373px;\n+ height: 209px;\n+ }\n+ @media screen and (max-width: $mobileWidth / 2) {\n+ width: 320px;\n+ img {\n+ width: 320px;\n+ height: 179px;\n+ }\n+ }\n+ .event-introduction {\n+ padding: 20px;\n+ background: #F8F8F8;\n+ h4 {\n+ font-family: Avenir-Heavy;\n+ font-size: 20px;\n+ color: #333;\n+ margin: 0 0 10px;\n+ }\n+ p {\n+ font-family: Avenir-Medium;\n+ font-size: 14px;\n+ color: #666;\n+ margin: 0;\n+ }\n+ a {\n+ display: inline-block;\n+ width: 100%;\n+ font-family: Avenir-Medium;\n+ font-size: 12px;\n+ color: #999;\n+ margin-top: 10px;\n+ .arrow {\n+ width: 8px;\n+ height: 13px;\n+ float: right;\n+ }\n+ }\n+ }\n+ }\n+ }\n.start-section {\nbackground-image: linear-gradient(0deg, $startColor 0%, $intermediateColor 51%, $endColor 100%);\n.start-body {\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add events&news to the home page. (#348)
36,268
30.04.2021 19:22:19
-28,800
5e03479e8d3b6c7e017bcf19fcdc5bdc2020ab79
Optimize the docs to build docker image
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -301,22 +301,33 @@ docker service scale dolphinscheduler_dolphinscheduler-worker=3\n### How to build a Docker image?\n-You can build a docker image in A Unix-like operating system, and you can also build it in Windows operating system.\n+#### 1. Build from the source code (Require Maven 3.3+ & JDK 1.8+)\n-In Unix-Like, Example:\n+In Unix-Like, execute in Terminal:\n-```sh\n+```\n$ sh ./docker/build/hooks/build\n```\n-In Windows, Example:\n+In Windows, execute in cmd or PowerShell:\n```bat\n-C:\\dolphinscheduler>.\\docker\\build\\hooks\\build.bat\n+C:\\dolphinscheduler-src>.\\docker\\build\\hooks\\build.bat\n```\nPlease read `./docker/build/hooks/build` `./docker/build/hooks/build.bat` script files if you don't understand\n+#### 2. Build from the binary distribution (Not require Maven 3.3+ & JDK 1.8+)\n+\n+Please download the binary distribution package apache-dolphinscheduler-1.3.6-bin.tar.gz, download address: [download](/en-us/download/download.html). And put apache-dolphinscheduler-1.3.6-bin.tar.gz into the `apache-dolphinscheduler-1.3.6-src/docker/build` directory, execute in Terminal or PowerShell:\n+\n+```\n+$ cd apache-dolphinscheduler-1.3.6-src/docker/build\n+$ docker build --build-arg VERSION=1.3.6 -t apache/dolphinscheduler:1.3.6 .\n+```\n+\n+> PowerShell should use `cd apache-dolphinscheduler-1.3.6-src/docker/build`\n+\n### How to add an environment variable for Docker?\nIf you would like to do additional initialization in an image derived from this one, add one or more environment variables under `/root/start-init-conf.sh`, and modify template files in `/opt/dolphinscheduler/conf/*.tpl`.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Optimize the docs to build docker image (#349)
36,303
10.05.2021 13:37:00
-28,800
ac25a21c98b24b90148e9faa3195008e1e337fb1
Error describing complement data flow with English document;
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/system-manual.md", "new_path": "docs/en-us/1.3.6/user_doc/system-manual.md", "diff": "@@ -117,14 +117,14 @@ The operation functions of the workflow definition list are as follows:\n* Recipient: Select notification policy||Timeout alarm||When fault tolerance occurs, process information or alarm email will be sent to the recipient list.\n* Cc: Select the notification strategy||Timeout alarm||When fault tolerance occurs, the process information or warning email will be copied to the CC list.\n* Startup parameter: Set or overwrite global parameter values when starting a new process instance.\n- * Complement: Two modes including serial complement and parallel complement. Serial complement: within the specified time range, the complement is executed sequentially from the start date to the end date, and only one process instance is generated; parallel complement: within the specified time range, multiple days are complemented at the same time to generate N process instances.\n+ * Complement: Two modes including serial complement and parallel complement. Serial complement: Within the specified time range, the complements are executed from the start date to the end date and N process instances are generated in turn; parallel complement: within the specified time range, multiple days are complemented at the same time to generate N process instances.\n* For example, you need to fill in the data from May 1 to May 10.\n<p align=\"center\">\n<img src=\"/img/complement_en1.png\" width=\"80%\" />\n</p>\n- > Serial mode: The complement is executed sequentially from May 1 to May 10, and a process instance is generated on the process instance page;\n+ > Serial mode: The complement is executed sequentially from May 1 to May 10, and ten process instances are generated on the process instance page;\n> Parallel mode: The tasks from May 1 to may 10 are executed simultaneously, and 10 process instances are generated on the process instance page.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Error describing complement data flow with English document; (#358)
36,348
12.05.2021 17:53:17
-28,800
5d46860e6923b261ce7fd8b7752fa865a09c336e
add meetup message on the header
[ { "change_type": "MODIFY", "old_path": "src/components/header/index.jsx", "new_path": "src/components/header/index.jsx", "diff": "@@ -140,6 +140,7 @@ class Header extends React.Component {\nrender() {\nconst { type, logo, onLanguageChange } = this.props;\nconst { menuBodyVisible, language, search, searchVisible } = this.state;\n+ const dataSource = siteConfig[language];\nreturn (\n<header\nclassName={\n@@ -149,6 +150,18 @@ class Header extends React.Component {\n})\n}\n>\n+ <div\n+ className={\n+ classnames({\n+ 'meetup-container': true,\n+ [`meetup-container-${type}`]: true,\n+ })\n+ }\n+ >\n+ <a href=\"https://www.meetup.com/dolphinscheduler/events/277413098/\">\n+ <p>{dataSource.meetup.text}</p>\n+ </a>\n+ </div>\n<div className=\"header-body\">\n<a href={getLink(`/${language}/index.html`)}>\n<img className=\"logo\" alt={siteConfig.name} title={siteConfig.name} src={getLink(logo)} />\n" }, { "change_type": "MODIFY", "old_path": "src/components/header/index.scss", "new_path": "src/components/header/index.scss", "diff": "background-color: #fff;\nbox-shadow: 0 2px 10px 0 rgba(0,0,0,0.08);\n}\n+ .meetup-container{\n+ display: flex;\n+ justify-content: center;\n+ align-items: center;\n+ width: 100%;\n+ height: 30px;\n+ font-family: Avenir-Medium;\n+ font-size: 16px;\n+ font-weight: bold;\n+ text-align: center;\n+ &-primary {\n+ background-color: #000F20;\n+ p{\n+ color: #fff;\n+ }\n+ }\n+ &-dark {\n+ background-color: #fff;\n+ p{\n+ // margin-top: 5px;\n+ color: #000F20;\n+ }\n+ }\n+ &-normal {\n+ background-color: #000F20;\n+ p{\n+ // margin-top: 5px;\n+ color: #fff;\n+ }\n+ }\n+ }\n.header-body {\nmax-width: $contentWidth;\nmargin: 0 auto;\n" }, { "change_type": "MODIFY", "old_path": "src/pages/home/index.jsx", "new_path": "src/pages/home/index.jsx", "diff": "@@ -52,35 +52,6 @@ class Home extends Language {\n});\n}\n- addClick = (length) => {\n- if (this.state.index < length - 1) {\n- this.setState({\n- ...this.state,\n- index: this.state.index + 1,\n- });\n- } else {\n- this.setState({\n- ...this.state,\n- index: 0,\n- });\n- }\n- }\n-\n- minusClick =(length) => {\n- if (this.state.index > 0) {\n- this.setState({\n- ...this.state,\n- index: this.state.index - 1,\n- });\n- } else {\n- this.setState({\n- ...this.state,\n- index: length - 1,\n- });\n- }\n- }\n-\n-\naddClick = (length) => {\nif (this.state.index < length - 1) {\nthis.setState({\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add meetup message on the header (#362)
36,268
14.05.2021 17:23:58
-28,800
406cbec5489d8bc8fa7ffd96e34cbd2eb30cb24c
Fix some description error in docker deployment
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -536,7 +536,7 @@ Take Spark 2.4.7 as an example:\n3. Copy the Spark 2.4.7 release binary into Docker container\n```bash\n-docker cp spark-2.4.7-bin-hadoop2.7.tgz dolphinscheduler-worker:/opt/soft\n+docker cp spark-2.4.7-bin-hadoop2.7.tgz docker-swarm_dolphinscheduler-worker_1:/opt/soft\n```\nBecause the volume `dolphinscheduler-shared-local` is mounted on `/opt/soft`, all files in `/opt/soft` will not be lost\n@@ -544,7 +544,7 @@ Because the volume `dolphinscheduler-shared-local` is mounted on `/opt/soft`, al\n4. Attach the container and ensure that `SPARK_HOME2` exists\n```bash\n-docker exec -it dolphinscheduler-worker bash\n+docker exec -it docker-swarm_dolphinscheduler-worker_1 bash\ncd /opt/soft\ntar zxf spark-2.4.7-bin-hadoop2.7.tgz\nrm -f spark-2.4.7-bin-hadoop2.7.tgz\n@@ -592,13 +592,13 @@ Take Spark 3.1.1 as an example:\n3. Copy the Spark 3.1.1 release binary into Docker container\n```bash\n-docker cp spark-3.1.1-bin-hadoop2.7.tgz dolphinscheduler-worker:/opt/soft\n+docker cp spark-3.1.1-bin-hadoop2.7.tgz docker-swarm_dolphinscheduler-worker_1:/opt/soft\n```\n4. Attach the container and ensure that `SPARK_HOME2` exists\n```bash\n-docker exec -it dolphinscheduler-worker bash\n+docker exec -it docker-swarm_dolphinscheduler-worker_1 bash\ncd /opt/soft\ntar zxf spark-3.1.1-bin-hadoop2.7.tgz\nrm -f spark-3.1.1-bin-hadoop2.7.tgz\n@@ -618,6 +618,8 @@ Check whether the task log contains the output like `Pi is roughly 3.146015`\n### How to support shared storage between Master, Worker and Api server?\n+> **Note**: If it is deployed on a single machine by `docker-compose`, step 1 and 2 can be skipped directly, and execute the command like `docker cp hadoop-3.2.2.tar.gz docker-swarm_dolphinscheduler-worker_1:/opt/soft` to put Hadoop into the shared directory `/opt/soft` in the container\n+\nFor example, Master, Worker and Api server may use Hadoop at the same time\n1. Modify the volume `dolphinscheduler-shared-local` to support nfs in `docker-compose.yml`\n@@ -639,6 +641,8 @@ volumes:\n### How to support local file resource storage instead of HDFS and S3?\n+> **Note**: If it is deployed on a single machine by `docker-compose`, step 2 can be skipped directly\n+\n1. Modify the following environment variables in `config.env.sh`:\n```\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Fix some description error in docker deployment (#363)
36,268
24.05.2021 16:24:11
-28,800
39aa8abf1948ba7bc4523e9b573dcb7d231588c4
add postgresql username, password and database for docker and kubernetes
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.4/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.4/user_doc/docker-deployment.md", "diff": "@@ -27,6 +27,8 @@ $ docker tag apache/dolphinscheduler:1.3.4 apache/dolphinscheduler:latest\n$ docker-compose up -d\n```\n+The **PostgreSQL** (with username `root`, password `root` and database `dolphinscheduler`) and **ZooKeeper** services will start by default\n+\n#### 3. Login\nVisit the Web UI: http://192.168.xx.xx:8888 (The local address is http://127.0.0.1:8888)\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "diff": "@@ -27,6 +27,8 @@ $ docker tag apache/dolphinscheduler:1.3.5 apache/dolphinscheduler:latest\n$ docker-compose up -d\n```\n+The **PostgreSQL** (with username `root`, password `root` and database `dolphinscheduler`) and **ZooKeeper** services will start by default\n+\n#### 3. Login\nVisit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/kubernetes-deployment.md", "diff": "@@ -32,6 +32,8 @@ These commands deploy DolphinScheduler on the Kubernetes cluster in the default\n> **Tip**: List all releases using `helm list`\n+The **PostgreSQL** (with username `root`, password `root` and database `dolphinscheduler`) and **ZooKeeper** services will start by default\n+\n## Access DolphinScheduler UI\nIf `ingress.enabled` in `values.yaml` is set to `true`, you just access `http://${ingress.host}/dolphinscheduler` in browser.\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -48,6 +48,8 @@ $ docker-compose up -d\n> PowerShell should use `cd apache-dolphinscheduler-1.3.6-src\\docker\\docker-swarm`\n+The **PostgreSQL** (with username `root`, password `root` and database `dolphinscheduler`) and **ZooKeeper** services will start by default\n+\n#### 3. Login\nVisit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "diff": "@@ -32,6 +32,8 @@ These commands deploy DolphinScheduler on the Kubernetes cluster in the default\n> **Tip**: List all releases using `helm list`\n+The **PostgreSQL** (with username `root`, password `root` and database `dolphinscheduler`) and **ZooKeeper** services will start by default\n+\n## Access DolphinScheduler UI\nIf `ingress.enabled` in `values.yaml` is set to `true`, you just access `http://${ingress.host}/dolphinscheduler` in browser.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add postgresql username, password and database for docker and kubernetes (#368)
36,268
24.05.2021 20:24:09
-28,800
dfe1875584f102688477fd703f01f52ca63669a7
update docs to build docker in 1.3.5
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.5/user_doc/docker-deployment.md", "diff": "@@ -248,22 +248,33 @@ docker service scale dolphinscheduler_dolphinscheduler-worker=3\n### How to build a Docker image?\n-You can build a docker image in A Unix-like operating system, and you can also build it in Windows operating system.\n+#### 1. Build from the source code (Require Maven 3.3+ & JDK 1.8+)\n-In Unix-Like, Example:\n+In Unix-Like, execute in Terminal:\n-```sh\n-$ sh ./docker/build/hooks/build\n+```bash\n+$ bash ./docker/build/hooks/build\n```\n-In Windows, Example:\n+In Windows, execute in cmd or PowerShell:\n```bat\n-C:\\dolphinscheduler>.\\docker\\build\\hooks\\build.bat\n+C:\\dolphinscheduler-src>.\\docker\\build\\hooks\\build.bat\n```\nPlease read `./docker/build/hooks/build` `./docker/build/hooks/build.bat` script files if you don't understand\n+#### 2. Build from the binary distribution (Not require Maven 3.3+ & JDK 1.8+)\n+\n+Please download the binary distribution package apache-dolphinscheduler-incubating-1.3.5-dolphinscheduler-bin.tar.gz, download address: [download](/en-us/download/download.html). And put apache-dolphinscheduler-incubating-1.3.5-dolphinscheduler-bin.tar.gz into the `apache-dolphinscheduler-incubating-1.3.5-src-release/docker/build` directory, execute in Terminal or PowerShell:\n+\n+```\n+$ cd apache-dolphinscheduler-incubating-1.3.5-src-release/docker/build\n+$ docker build --build-arg VERSION=1.3.5 -t apache/dolphinscheduler:1.3.5 .\n+```\n+\n+> PowerShell should use `cd apache-dolphinscheduler-incubating-1.3.5-src-release/docker/build`\n+\n### How to add an environment variable for Docker?\nIf you would like to do additional initialization in an image derived from this one, add one or more environment variables under `/root/start-init-conf.sh`, and modify template files in `/opt/dolphinscheduler/conf/*.tpl`.\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -307,8 +307,8 @@ docker service scale dolphinscheduler_dolphinscheduler-worker=3\nIn Unix-Like, execute in Terminal:\n-```\n-$ sh ./docker/build/hooks/build\n+```bash\n+$ bash ./docker/build/hooks/build\n```\nIn Windows, execute in cmd or PowerShell:\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
update docs to build docker in 1.3.5 (#370)
36,281
02.06.2021 18:01:08
-28,800
c21afc9beeaa88a76c9b775ee393673ec39274f9
updata blog * updata blog jinyong updata blog jinyong * up date blog.js
[ { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/1620304011852-1621754591271.png", "new_path": "img/dolphinscheduler_json_20210601/1620304011852-1621754591271.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/1620304011852-1621754591271.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/1620304011852.png", "new_path": "img/dolphinscheduler_json_20210601/1620304011852.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/1620304011852.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/image-20210524102618970.png", "new_path": "img/dolphinscheduler_json_20210601/image-20210524102618970.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/image-20210524102618970.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/image-20210524103609210.png", "new_path": "img/dolphinscheduler_json_20210601/image-20210524103609210.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/image-20210524103609210.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/image-20210524104218236.png", "new_path": "img/dolphinscheduler_json_20210601/image-20210524104218236.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/image-20210524104218236.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/image-20210524104503423.png", "new_path": "img/dolphinscheduler_json_20210601/image-20210524104503423.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/image-20210524104503423.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/image-20210524104838911.png", "new_path": "img/dolphinscheduler_json_20210601/image-20210524104838911.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/image-20210524104838911.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/image-20210524144950185.png", "new_path": "img/dolphinscheduler_json_20210601/image-20210524144950185.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/image-20210524144950185.png differ\n" }, { "change_type": "ADD", "old_path": "img/dolphinscheduler_json_20210601/json.png", "new_path": "img/dolphinscheduler_json_20210601/json.png", "diff": "Binary files /dev/null and b/img/dolphinscheduler_json_20210601/json.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
updata blog (#375) * updata blog jinyong updata blog jinyong * up date blog.js
36,268
03.06.2021 15:44:50
-28,800
2af1eb160b54c250de7e78b50b225b16dcc14ce9
add dolphinscheduler network obtaining problem documents and solution
[ { "change_type": "ADD", "old_path": "asset/dolphinscheduler-netutils.jar", "new_path": "asset/dolphinscheduler-netutils.jar", "diff": "Binary files /dev/null and b/asset/dolphinscheduler-netutils.jar differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add dolphinscheduler network obtaining problem documents and solution (#379)
36,339
05.06.2021 21:35:25
-28,800
3a185130f9880217a5a96c3e389c09c1ff563e7a
Translate the Json_Split * Create load-balance.md docs: add en-us load-balance.md * Delete load-balance.md * Create Json_Split.md Translate the Json_Split * Update json_split.md update the file * Update blog.js update the file * Update blog.js update the file * Update Json_Split.md Update Json_Split : use process instead of workflow
[ { "change_type": "MODIFY", "old_path": "site_config/blog.js", "new_path": "site_config/blog.js", "diff": "@@ -3,6 +3,14 @@ export default {\nbarText: 'Blog',\npostsTitle: 'All posts',\nlist: [\n+ {\n+ title: 'Why did we split the big json of DAG in workflow definition?',\n+ author: 'JinyLeeChina',\n+ translator: 'QuakeWang',\n+ dateStr: '2021-06-03',\n+ desc: 'The task and relationship in the workflow of Dolphinscheduler is saved as the process_definition_json field that saves the process_definiton table in the database in a large JSON. If a workflow is large, this JSON field has become a result. Very big, you need to analyze JSON when using it, it costs very much, and the task cannot be reused, so the community plan launches the JSON split project.',\n+ link: '/en-us/blog/Json_Split.html',\n+ },\n{\ntitle: ' Big Data Workflow Task Scheduling - Directed Acyclic Graph (DAG) for Topological Sorting',\nauthor: 'LidongDai',\n@@ -26,7 +34,6 @@ export default {\nlink: '/en-us/blog/meetup_2019_10_26.html',\n},\n-\n],\n},\n'zh-cn': {\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Translate the Json_Split (#380) * Create load-balance.md docs: add en-us load-balance.md * Delete load-balance.md * Create Json_Split.md Translate the Json_Split * Update json_split.md update the file * Update blog.js update the file * Update blog.js update the file * Update Json_Split.md Update Json_Split : use process instead of workflow Co-authored-by: dailidong <[email protected]>
36,268
07.06.2021 12:49:56
-28,800
6554d7388cbdf75b1bb8bfe4f29e4ed963d1f4aa
rename dolphinscheduler-postgre.sql to dolphinscheduler_postgre.sql in 1.3.6
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -74,7 +74,7 @@ In this way, you need to install [docker](https://docs.docker.com/engine/install\n#### 2. Please login to the PostgreSQL database and create a database named `dolphinscheduler`\n-#### 3. Initialize the database, import `sql/dolphinscheduler-postgre.sql` to create tables and initial data\n+#### 3. Initialize the database, import `sql/dolphinscheduler_postgre.sql` to create tables and initial data\n#### 4. Download the DolphinScheduler Image\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
rename dolphinscheduler-postgre.sql to dolphinscheduler_postgre.sql in 1.3.6 (#383)
36,358
24.06.2021 12:00:09
-28,800
f6ed7d56fe76513d40a465d5415b87bf3a6b9f6b
fix ds document issuse 5688.change plugin base class correct package name
[ { "change_type": "MODIFY", "old_path": "development/en-us/plugin-development.md", "new_path": "development/en-us/plugin-development.md", "diff": "@@ -6,8 +6,8 @@ Remind:Currently, task plugin development does not support hot deployment.\n#### YARN-based calculations (see MapReduceTask)\n-- Need to be **cn.dolphinscheduler.server.worker.task** Down **TaskManager** Create a custom task in the class (also need to register the corresponding task type in TaskType)\n-- Need to inherit**cn.dolphinscheduler.server.worker.task** Down **AbstractYarnTask**\n+- Need to be **org.apache.dolphinscheduler.server.worker.task** Down **TaskManager** Create a custom task in the class (also need to register the corresponding task type in TaskType)\n+- Need to inherit**org.apache.dolphinscheduler.server.worker.task** Down **AbstractYarnTask**\n- Constructor Scheduling **AbstractYarnTask** Construction method\n- Inherit **AbstractParameters** Custom task parameter entity\n- Rewrite **AbstractTask** of **init** Parsing in method**Custom task parameters**\n@@ -16,9 +16,9 @@ Remind:Currently, task plugin development does not support hot deployment.\n#### Non-YARN-based calculations (see ShellTask)\n-- Need to be **cn.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n+- Need to be **org.apache.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n-- Need to inherit**cn.dolphinscheduler.server.worker.task** Down **AbstractTask**\n+- Need to inherit**org.apache.dolphinscheduler.server.worker.task** Down **AbstractTask**\n- Instantiation in constructor **ShellCommandExecutor**\n@@ -46,8 +46,8 @@ Remind:Currently, task plugin development does not support hot deployment.\n### Non-SHELL-based tasks (see SqlTask)\n-- Need to be **cn.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n-- Need to inherit**cn.dolphinscheduler.server.worker.task** Down **AbstractTask**\n+- Need to be **org.apache.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n+- Need to inherit**org.apache.dolphinscheduler.server.worker.task** Down **AbstractTask**\n- Inherit **AbstractParameters** Custom task parameter entity\n- Constructor or override **AbstractTask** of **init** in the method, parse the custom task parameter entity\n- Rewrite **handle** Methods to implement business logic and set the corresponding**exitStatusCode**\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.2.1/user_doc/plugin-development.md", "new_path": "docs/en-us/1.2.1/user_doc/plugin-development.md", "diff": "@@ -6,8 +6,8 @@ Remind:Currently, task plugin development does not support hot deployment.\n#### YARN-based calculations (see MapReduceTask)\n-- Need to be **cn.dolphinscheduler.server.worker.task** Down **TaskManager** Create a custom task in the class (also need to register the corresponding task type in TaskType)\n-- Need to inherit**cn.dolphinscheduler.server.worker.task** Down **AbstractYarnTask**\n+- Need to be **org.apache.dolphinscheduler.server.worker.task** Down **TaskManager** Create a custom task in the class (also need to register the corresponding task type in TaskType)\n+- Need to inherit**org.apache.dolphinscheduler.server.worker.task** Down **AbstractYarnTask**\n- Constructor Scheduling **AbstractYarnTask** Construction method\n- Inherit **AbstractParameters** Custom task parameter entity\n- Rewrite **AbstractTask** of **init** Parsing in method**Custom task parameters**\n@@ -16,9 +16,9 @@ Remind:Currently, task plugin development does not support hot deployment.\n#### Non-YARN-based calculations (see ShellTask)\n-- Need to be **cn.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n+- Need to be **org.apache.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n-- Need to inherit**cn.dolphinscheduler.server.worker.task** Down **AbstractTask**\n+- Need to inherit**org.apache.dolphinscheduler.server.worker.task** Down **AbstractTask**\n- Instantiation in constructor **ShellCommandExecutor**\n@@ -46,8 +46,8 @@ Remind:Currently, task plugin development does not support hot deployment.\n### Non-SHELL-based tasks (see SqlTask)\n-- Need to be **cn.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n-- Need to inherit**cn.dolphinscheduler.server.worker.task** Down **AbstractTask**\n+- Need to be **org.apache.dolphinscheduler.server.worker.task** Down **TaskManager** A custom task\n+- Need to inherit**org.apache.dolphinscheduler.server.worker.task** Down **AbstractTask**\n- Inherit **AbstractParameters** Custom task parameter entity\n- Constructor or override **AbstractTask** of **init** in the method, parse the custom task parameter entity\n- Rewrite **handle** Methods to implement business logic and set the corresponding**exitStatusCode**\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
fix ds document issuse 5688.change plugin base class correct package name (#387)
36,339
29.06.2021 10:06:09
-28,800
9806dab503cf4af90e94060fdae900420bfb7099
Update standalone-deployment.md * Update standalone-deployment.md add the description about api server port * Update standalone-deployment.md Add the description about api server port
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/standalone-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/standalone-deployment.md", "diff": "@@ -220,6 +220,9 @@ mysql -uroot -p\n# specify the user who have permissions to create directory under HDFS/S3 root path\nhdfsRootUser=\"hdfs\"\n+ # api server port\n+ apiServerPort=\"12345\"\n+\n# On which machines to deploy the DS service, choose localhost for this machine\nips=\"localhost\"\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Update standalone-deployment.md (#388) * Update standalone-deployment.md add the description about api server port * Update standalone-deployment.md Add the description about api server port
36,309
07.07.2021 15:04:58
-28,800
64a2b0ae6f0781913f7410366fa46a4d7dda0aa8
ipalfish_tech_platform.md * ipalfish_tech_platform.md * [docs-zh] style commit message- Replace the abbreviation to the full name; Modify the document format
[ { "change_type": "ADD", "old_path": "img/ipalfish_platform/DS-framework.png", "new_path": "img/ipalfish_platform/DS-framework.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/DS-framework.png differ\n" }, { "change_type": "ADD", "old_path": "img/ipalfish_platform/Data_quality_platform.png", "new_path": "img/ipalfish_platform/Data_quality_platform.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/Data_quality_platform.png differ\n" }, { "change_type": "ADD", "old_path": "img/ipalfish_platform/Griffin-framework.png", "new_path": "img/ipalfish_platform/Griffin-framework.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/Griffin-framework.png differ\n" }, { "change_type": "ADD", "old_path": "img/ipalfish_platform/ID_List_Bind.png", "new_path": "img/ipalfish_platform/ID_List_Bind.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/ID_List_Bind.png differ\n" }, { "change_type": "ADD", "old_path": "img/ipalfish_platform/Rule_Template.png", "new_path": "img/ipalfish_platform/Rule_Template.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/Rule_Template.png differ\n" }, { "change_type": "ADD", "old_path": "img/ipalfish_platform/Rule_entity.png", "new_path": "img/ipalfish_platform/Rule_entity.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/Rule_entity.png differ\n" }, { "change_type": "ADD", "old_path": "img/ipalfish_platform/results_of_enforcement.png", "new_path": "img/ipalfish_platform/results_of_enforcement.png", "diff": "Binary files /dev/null and b/img/ipalfish_platform/results_of_enforcement.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
ipalfish_tech_platform.md (#398) * ipalfish_tech_platform.md * [docs-zh] style commit message- Replace the abbreviation to the full name; Modify the document format
36,363
18.07.2021 21:42:37
-28,800
ab35ab4d9a76baada1972057505c47a08d5d3eca
introduction of architecture evolution for version 1.2/1.3/2.0 * Add files via upload create architecture_evolution.md * Add files via upload upload architecture1.2.x * Update blog.js
[ { "change_type": "ADD", "old_path": "img/architecture-1.2.0.jpg", "new_path": "img/architecture-1.2.0.jpg", "diff": "Binary files /dev/null and b/img/architecture-1.2.0.jpg differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
introduction of architecture evolution for version 1.2/1.3/2.0 (#406) * Add files via upload create architecture_evolution.md * Add files via upload upload architecture1.2.x * Update blog.js
36,339
28.07.2021 16:07:05
-28,800
6470bc98556030fa38fa3ef451565d2ef0770f02
[SOC] Dev run in Windows * Update registry_spi.md Add about building dev branch development environment in Windows environment * Create dev_run.md dev branch builds in Windows. * Update registry_spi.md * Update docsdev.js * Update dev_run.md
[ { "change_type": "MODIFY", "old_path": "site_config/docsdev.js", "new_path": "site_config/docsdev.js", "diff": "@@ -35,6 +35,10 @@ export default {\ntitle: 'Global-Params',\nlink: '/zh-cn/docs/dev/user_doc/globalParams.html',\n},\n+ {\n+ title: 'Dev-Run',\n+ link: '/zh-cn/docs/dev/user_doc/dev_run.html',\n+ },\n],\n},\n],\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[SOC] Dev run in Windows (#409) * Update registry_spi.md Add about building dev branch development environment in Windows environment * Create dev_run.md dev branch builds in Windows. * Update registry_spi.md * Update docsdev.js * Update dev_run.md
36,268
11.08.2021 14:40:36
-28,800
a18a7c98af7b23ad561099bfc784710febe0e461
Remove mesos in docker and k8s
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/docker-deployment.md", "diff": "@@ -176,14 +176,11 @@ Especially, it can be configured through the environment variable configuration\n| Hadoop3 | Not Sure | Not tested |\n| Spark-Local(client) | Indirect Yes | Refer to FAQ |\n| Spark-YARN(cluster) | Indirect Yes | Refer to FAQ |\n-| Spark-Mesos(cluster) | Not Yet | |\n| Spark-Standalone(cluster) | Not Yet | |\n| Spark-Kubernetes(cluster) | Not Yet | |\n| Flink-Local(local>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n| Flink-YARN(yarn-cluster) | Indirect Yes | Refer to FAQ |\n| Flink-YARN(yarn-session/yarn-per-job/yarn-application>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n-| Flink-Mesos(default) | Not Yet | |\n-| Flink-Mesos(remote>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n| Flink-Standalone(default) | Not Yet | |\n| Flink-Standalone(remote>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n| Flink-Kubernetes(default) | Not Yet | |\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "new_path": "docs/en-us/1.3.6/user_doc/kubernetes-deployment.md", "diff": "@@ -98,14 +98,11 @@ The configuration file is `values.yaml`, and the [Appendix-Configuration](#appen\n| Hadoop3 | Not Sure | Not tested |\n| Spark-Local(client) | Indirect Yes | Refer to FAQ |\n| Spark-YARN(cluster) | Indirect Yes | Refer to FAQ |\n-| Spark-Mesos(cluster) | Not Yet | |\n| Spark-Standalone(cluster) | Not Yet | |\n| Spark-Kubernetes(cluster) | Not Yet | |\n| Flink-Local(local>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n| Flink-YARN(yarn-cluster) | Indirect Yes | Refer to FAQ |\n| Flink-YARN(yarn-session/yarn-per-job/yarn-application>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n-| Flink-Mesos(default) | Not Yet | |\n-| Flink-Mesos(remote>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n| Flink-Standalone(default) | Not Yet | |\n| Flink-Standalone(remote>=1.11) | Not Yet | Generic CLI mode is not yet supported |\n| Flink-Kubernetes(default) | Not Yet | |\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Remove mesos in docker and k8s (#418)
36,278
11.08.2021 23:16:48
-28,800
45278e221b08f1728154edbf53aa236239d79ac1
add new users logos
[ { "change_type": "MODIFY", "old_path": "site_config/home.jsx", "new_path": "site_config/home.jsx", "diff": "@@ -254,6 +254,27 @@ export default {\n{\nimg: '/img/ourusers/[email protected]',\n},\n+ {\n+ img: '/img/ourusers/jdt.png',\n+ },\n+ {\n+ img: '/img/ourusers/hundsun.png',\n+ },\n+ {\n+ img: '/img/ourusers/zhaopin.png',\n+ },\n+ {\n+ img: '/img/ourusers/dell.png',\n+ },\n+ {\n+ img: '/img/ourusers/shansong.png',\n+ },\n+ {\n+ img: '/img/ourusers/189.png',\n+ },\n+ {\n+ img: '/img/ourusers/360.png',\n+ },\n],\n},\nuserreview: {\n@@ -490,6 +511,27 @@ export default {\n{\nimg: '/img/ourusers/[email protected]',\n},\n+ {\n+ img: '/img/ourusers/jdt.png',\n+ },\n+ {\n+ img: '/img/ourusers/hundsun.png',\n+ },\n+ {\n+ img: '/img/ourusers/zhaopin.png',\n+ },\n+ {\n+ img: '/img/ourusers/dell.png',\n+ },\n+ {\n+ img: '/img/ourusers/shansong.png',\n+ },\n+ {\n+ img: '/img/ourusers/189.png',\n+ },\n+ {\n+ img: '/img/ourusers/360.png',\n+ },\n],\n},\nevents: {\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add new users logos (#419)
36,339
12.08.2021 23:34:39
-28,800
0306953623303d761628e1df475be6c44b222991
[Summer2021] Translate the alert_spi.md Update the mistakes.
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/alert_spi.md", "new_path": "docs/en-us/dev/user_doc/alert_spi.md", "diff": "+### DolphinScheduler Alert SPI main design\n+\n+#### DolphinScheduler SPI Design\n+\n+The architecture of microkernel & plug-in of DolphinScheduler is changing. All core capabilities such as tasks, resource storage, registry, etc. will be designed to be extensions, and we want to improve the flexibility as well as the friendliness (extensibility) of DolphinScheduler itself through SPI.\n+\n+You can read the relevant code under the dolphinscheduler-spi module as a reference. The extended interface of the associated plug-in is under the module, and when we need to implement the relevant function plug-in, it is recommended to read this code block first. Of course, you are welcomed to read the documentation, which will save a lot less time. However, the documentation has a certain lag and when it is missing, it is suggested to take the source code as the reference (If you are interested, we also welcome you to submit relevant documents). In addition, we rarely change the extension (excluding additions) to the extension interface, except for major architectural changes where there is an incompatible upgrade version. Hence, the existing documentation is generally adequate.\n+\n+When you need to extend, you actually only need to focus on the extension interface. For example, for the alert service you only need to focus on the AlertChannelFactory and the AlertChannel. The underlying logic is already implemented by DolphinScheduler, which makes our development much more focused and simpler.\n+\n+By the way, we use an excellent front-end component, form-create, which supports the generation of front-end ui components based on json. If plugin development involves a front-end, we will use json to generate the relevant front-end UI components. The parameters of the plugin are wrapped in org.apache.dolphinscheduler.spi.params, which converts all the relevant parameters into json, meaning that you can draw the front-end components (mainly forms here, we only care about the data of front and back-end interaction) in Java code.\n+\n+This article focuses on the design and development of Alert alerts.\n+\n+#### Main Modules\n+\n+If you don't care about its internal design, and just want to know how to develop your own alarm plugin, you can skip this section.\n+\n+* dolphinscheduler-spi\n+\n+ This module is the core SPI module and provides the basic SPI relevant behaviour, where dolphinschedulerplugin is the plugin top-layer interface, all DolphinsCheduler's plugins must implement the interface, and the module also provides some universal tool classes (if you can detach it again Some will something will be better? For example, the UI, we currently use the parameter part) and some UI related basic information.\n+\n+* dolphinscheduler-alert\n+\n+ In this module, we have implemented the load of the associated plugin when the Alert-Server starts. Alert provides a variety of plug-in configuration methods that can be enabled by simple configurations after you have done the development. The configuration file is located at dolphinscheduler-alert/src/main/resources/alert.properties .\n+\n+ It provides two methods of configuration.\n+\n+ 1: Configure the jar directory specified by the plugin, eg: alert.plugin.dir=/root/dolphinscheduler/lib/plugin/alert . When alert-server starts, it will load the jar of the relevant plugin from the specified directory.\n+\n+ 2: IDE development mode\n+\n+ You can use this configuration when you are in the debugging phase of development, see [dolphinscheduler-maven-plugin](https://github.com/apache/incubator-dolphinscheduler-maven-plugin) for design principles.\n+\n+\n+\n+ * Packaging plugins\n+\n+ We use provisio, an excellent packaging tool, for packaging plugins. Please add it to dolphinscheduler-dist/src/main/provisio/dolphinscheduler.xml, and it will package plugins to the specified directory when processed.\n+\n+\n+\n+#### Alert SPI Main class information.\n+\n+AlertChannelFactory\n+All alert plugins need to implement this interface. The interface is used to define the name of the alert plugin and the required parameters.\n+\n+AlertChannel\n+The interface of the alarm plug-in. The alarm plugin needs to implement the interface. It only has one method process. The upper alarm system calls the method and gets the return information of the alert by the AlertResult returned by this method.\n+\n+AlertData\n+Alert content information. It includes id, title, content and log.\n+\n+AlertInfo\n+Alarm-related information. When the upper system calls the alarm plug-in instance, the instance of this class is incorporated into the specific alarm plugin through the Process method. It contains the parameter information filled in the front end of the alarm content AlertData and the called alarm plugin instance.\n+\n+AlertResult\n+The alert plugin sends an alert return message.\n+\n+org.apache.dolphinscheduler.spi.params\n+This package contains the plug-in parameter definitions. We use alpacajs, a front-end library http://www.form-create.com, which dynamically generates the front-end ui based on the parameter list json returned by the plug-in definition, so we don't need to care about the front-end when doing SPI plug-in development.\n+\n+Inside this package we currently only wrap RadioParam, TextParam and PasswordParam, which are used to define parameters of text, radio and password respectively.\n+\n+AbsPluginParams\n+\n+This class is the base class for all parameters and is inherited by the RadioParam classes. Each DS alert plugin returns a list of AbsPluginParams in the AlertChannelFactory implementation.\n+\n+The specific design of alert_spi can be found in issue: [Alert Plugin Design](https://github.com/apache/incubator-dolphinscheduler/issues/3049)\n+\n+#### Alert SPI built-in implementation\n+\n+* Email\n+\n+ Email alert notification\n+\n+* DingTalk\n+\n+ Alert for DingTalk group chat bots\n+\n+* EnterpriseWeChat\n+\n+ EnterpriseWeChat alert notifications\n+\n+ Related parameter configuration can refer to the EnterpriseWeChat robot document.\n+\n+* Script\n+\n+ We have implemented a shell script for alerting. We will pass the relevant alert parameters to the script and you can implement your alert logic in the shell. This is a good way to interface with internal alerting applications.\n+\n+* SMS\n+\n+ SMS alerts\n+\n+#### Alarm Custom Plugin Development\n+\n+In fact, it's very easy to implement a plugin by yourself, you only need to care about the plugin extension interface. In Alert you only need to care about the AlertChannelFactory and AlertChannel. We would recommend that you follow the design specifications of other built-in plugins so that when your idea is good enough, you can donate it to the community without having to change it too much.\n+\n+When you have finished developing the relevant code, configure the relevant plug-ins in alert.properties (or just configure a plug-in directory and it will load all the plug-ins in that directory).\n+\n+\n+Then, you can happily start using your own plugins.\n+\n+In fact, custom plug-in development is as easy as we described, and not as difficult as you imagined.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Summer2021] Translate the alert_spi.md (#405) Update the mistakes.
36,339
14.08.2021 08:32:59
-28,800
0569734537baec772945bd0780a3a5d58f61734c
[SOC] Translate the globalParams.md
[ { "change_type": "MODIFY", "old_path": "site_config/docsdev.js", "new_path": "site_config/docsdev.js", "diff": "@@ -12,9 +12,13 @@ export default {\ntitle: 'Registry-SPI',\nlink: '/en-us/docs/dev/user_doc/registry_spi.html',\n},\n+ {\n+ title: 'Global-Params',\n+ link: '/en-us/docs/dev/user_doc/globalParams.html',\n+ },\n{\ntitle: 'Dev-Run',\n- link: '/en-us/docs/dev/user_doc/dev_run.html',\n+ link: '/en-us/docs/dev/user_doc/dev-run.html',\n},\n],\n},\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[SOC] Translate the globalParams.md (#413)
36,339
01.09.2021 10:03:13
-28,800
57b52356197974ab86932a2cadba6c0f3f8bdd2e
Keep the name of dev-run the same in English and Chinese * Update docsdev.js Keep the name of dev-run the same in English and Chinese * Rename dev-run.md to dev_run.md Keep the name of dev-run the same in English and Chinese
[ { "change_type": "RENAME", "old_path": "docs/en-us/dev/user_doc/dev-run.md", "new_path": "docs/en-us/dev/user_doc/dev_run.md", "diff": "" }, { "change_type": "MODIFY", "old_path": "site_config/docsdev.js", "new_path": "site_config/docsdev.js", "diff": "@@ -18,7 +18,7 @@ export default {\n},\n{\ntitle: 'Dev-Run',\n- link: '/en-us/docs/dev/user_doc/dev-run.html',\n+ link: '/en-us/docs/dev/user_doc/dev_run.html',\n},\n],\n},\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Keep the name of dev-run the same in English and Chinese (#427) * Update docsdev.js Keep the name of dev-run the same in English and Chinese * Rename dev-run.md to dev_run.md Keep the name of dev-run the same in English and Chinese
36,268
09.09.2021 16:08:49
-28,800
b7eec359ecf46132d4ff2a65719c524c888dbd38
Add build multi-platform images for docker
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.8/user_doc/docker-deployment.md", "new_path": "docs/en-us/1.3.8/user_doc/docker-deployment.md", "diff": "@@ -300,7 +300,7 @@ docker service scale dolphinscheduler_dolphinscheduler-worker=3\n### How to build a Docker image?\n-#### 1. Build from the source code (Require Maven 3.3+ & JDK 1.8+)\n+#### Build from the source code (Require Maven 3.3+ & JDK 1.8+)\nIn Unix-Like, execute in Terminal:\n@@ -316,7 +316,7 @@ C:\\dolphinscheduler-src>.\\docker\\build\\hooks\\build.bat\nPlease read `./docker/build/hooks/build` `./docker/build/hooks/build.bat` script files if you don't understand\n-#### 2. Build from the binary distribution (Not require Maven 3.3+ & JDK 1.8+)\n+#### Build from the binary distribution (Not require Maven 3.3+ & JDK 1.8+)\nPlease download the binary distribution package apache-dolphinscheduler-1.3.8-bin.tar.gz, download address: [download](/en-us/download/download.html). And put apache-dolphinscheduler-1.3.8-bin.tar.gz into the `apache-dolphinscheduler-1.3.8-src/docker/build` directory, execute in Terminal or PowerShell:\n@@ -327,6 +327,20 @@ $ docker build --build-arg VERSION=1.3.8 -t apache/dolphinscheduler:1.3.8 .\n> PowerShell should use `cd apache-dolphinscheduler-1.3.8-src/docker/build`\n+#### Build multi-platform images\n+\n+Currently support to build images including `linux/amd64` and `linux/arm64` platform architecture, requirements:\n+\n+1. Support [docker buildx](https://docs.docker.com/engine/reference/commandline/buildx/)\n+2. Own the push permission of https://hub.docker.com/r/apache/dolphinscheduler (**Be cautious**: The build command will automatically push the multi-platform architecture images to the docker hub of apache/dolphinscheduler by default)\n+\n+Execute:\n+\n+```bash\n+$ docker login # login to push apache/dolphinscheduler\n+$ bash ./docker/build/hooks/build\n+```\n+\n### How to add an environment variable for Docker?\nIf you would like to do additional initialization in an image derived from this one, add one or more environment variables under `/root/start-init-conf.sh`, and modify template files in `/opt/dolphinscheduler/conf/*.tpl`.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add build multi-platform images for docker (#433)
36,295
27.09.2021 10:16:17
-28,800
605004228b9b92d5c5f825bbf5d7ff790358a8b7
add blokcing task project blog
[ { "change_type": "ADD", "old_path": "img/blocking-01.png", "new_path": "img/blocking-01.png", "diff": "Binary files /dev/null and b/img/blocking-01.png differ\n" }, { "change_type": "ADD", "old_path": "img/blocking-02.png", "new_path": "img/blocking-02.png", "diff": "Binary files /dev/null and b/img/blocking-02.png differ\n" }, { "change_type": "ADD", "old_path": "img/blocking-03.png", "new_path": "img/blocking-03.png", "diff": "Binary files /dev/null and b/img/blocking-03.png differ\n" }, { "change_type": "ADD", "old_path": "img/blocking-04.png", "new_path": "img/blocking-04.png", "diff": "Binary files /dev/null and b/img/blocking-04.png differ\n" }, { "change_type": "ADD", "old_path": "img/blocking-05.png", "new_path": "img/blocking-05.png", "diff": "Binary files /dev/null and b/img/blocking-05.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add blokcing task project blog
36,287
29.09.2021 00:01:44
-28,800
082a9320fcb4db20b17cd7a6123d2eceb699c332
update ut-template
[ { "change_type": "ADD", "old_path": "img/unit-test/ut-controller-architecture.png", "new_path": "img/unit-test/ut-controller-architecture.png", "diff": "Binary files /dev/null and b/img/unit-test/ut-controller-architecture.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
update ut-template
36,287
29.09.2021 00:11:19
-28,800
7fb431bbb2c663a87bdd9c415f6dc5678f699bed
add ut guideline
[ { "change_type": "ADD", "old_path": "img/unit-test/ut-communication-based-style.png", "new_path": "img/unit-test/ut-communication-based-style.png", "diff": "Binary files /dev/null and b/img/unit-test/ut-communication-based-style.png differ\n" }, { "change_type": "ADD", "old_path": "img/unit-test/ut-nested-3a.png", "new_path": "img/unit-test/ut-nested-3a.png", "diff": "Binary files /dev/null and b/img/unit-test/ut-nested-3a.png differ\n" }, { "change_type": "ADD", "old_path": "img/unit-test/ut-output-based-style.png", "new_path": "img/unit-test/ut-output-based-style.png", "diff": "Binary files /dev/null and b/img/unit-test/ut-output-based-style.png differ\n" }, { "change_type": "ADD", "old_path": "img/unit-test/ut-state-based-style.png", "new_path": "img/unit-test/ut-state-based-style.png", "diff": "Binary files /dev/null and b/img/unit-test/ut-state-based-style.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add ut guideline
36,339
02.10.2021 22:06:06
-28,800
eba368053c7cb8cddf5be9fdb9136aa57bb5d407
[SOC] Translate dev_quick_start * Update docsdev.js add Dev-Quick-Start html * Create dev_quick_start.md add dev_quick_start English version * Update dev_quick_start.md Standardized format * Update dev_quick_start.md * Update site.js set the dev default document in site_config/site.js to dev_quick_start * Update dev_quick_start.md * Update dev_quick_start.md
[ { "change_type": "MODIFY", "old_path": "site_config/docsdev.js", "new_path": "site_config/docsdev.js", "diff": "@@ -4,6 +4,10 @@ export default {\n{\ntitle: 'Deployment Document',\nchildren: [\n+ {\n+ title: 'Dev-Quick-Start',\n+ link: '/en-us/docs/dev/user_doc/dev_quick_start.html',\n+ },\n{\ntitle: 'Alert-SPI',\nlink: '/en-us/docs/dev/user_doc/alert_spi.html',\n" }, { "change_type": "MODIFY", "old_path": "site_config/site.js", "new_path": "site_config/site.js", "diff": "@@ -77,7 +77,7 @@ export default {\n{\nkey: 'docsdev',\ntext: 'dev',\n- link: '/en-us/docs/dev/user_doc/alert_spi.html',\n+ link: '/en-us/docs/dev/user_doc/dev_quick_start.html',\n},\n],\n},\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[SOC] Translate dev_quick_start (#436) * Update docsdev.js add Dev-Quick-Start html * Create dev_quick_start.md add dev_quick_start English version * Update dev_quick_start.md Standardized format * Update dev_quick_start.md * Update site.js set the dev default document in site_config/site.js to dev_quick_start * Update dev_quick_start.md * Update dev_quick_start.md
36,331
09.10.2021 00:24:41
-28,800
436f7d94a2101bb590cdf77c28451a39a99d6bb5
Updating Details for the dag picture * Update DAG.md updating Details for the dag picture * updating details for DAG Picture
[ { "change_type": "MODIFY", "old_path": "blog/en-us/DAG.md", "new_path": "blog/en-us/DAG.md", "diff": "@@ -53,15 +53,14 @@ Out-degree: Assuming that there is a node V in the directed graph, the out-degre\n![DAG02](https://github.com/apache/dolphinscheduler-website/blob/master/img/DAG/DAG02.png?raw=true)\n-In degree of node 1: 0, out degree: 2\n-In degree of node 2: 1, out degree: 2\n-\n-In degree of node 3: 2, out degree: 1\n-\n-In degree of node 4: 2, out degree: 2\n-\n-In degree of node 5: 2, out degree: 0\n+|Node|in degree|out degree|count of in degree|count of out degree|\n+|----|----|----|----|----|\n+|Node 1|0|Node 2,Node 4|0|2|\n+|Node 2|Node 1|Node 3,Node 4|1|2|\n+|Node 3|Node 2,Node 4|Node 5|2|1|\n+|Node 4|Node 1,Node 2|Node 3,Node 5|2|2|\n+|Node 5|Node 3,Node 4|0|2|0|\n**Its topological sorting process is:**\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Updating Details for the dag picture (#450) * Update DAG.md updating Details for the dag picture * updating details for DAG Picture
36,284
09.10.2021 00:27:33
-28,800
7b76cc9862868980186c90753f8923e44f445c13
Use Checkstyle for Intellij auto format
[ { "change_type": "MODIFY", "old_path": "community/en-us/development/pull-request.md", "new_path": "community/en-us/development/pull-request.md", "diff": "@@ -58,31 +58,25 @@ Please refer to the commit message section.\n### Pull Request Code Style\n-[Checkstyle](https://checkstyle.sourceforge.io/) is a development tool to help programmers write Java code that adheres to a coding standard. It automates the process of checking Java code to spare humans of this boring (but important) task. This makes it ideal for projects that want to enforce a coding standard.\n+Code style is the thing you have to consider when you submit pull request for DolphinScheduler. We using [Checkstyle](https://checkstyle.sourceforge.io), a development tool to help programmers write Java code that adheres to a coding standard, in CI to keep DolphinScheduler codebase in the same style. Your pull request could not be merged if your code style checker failed. You could format your code by *Checkstyle* in your local environment before you submit your pull request to check code style. The activation step as below:\n-How to configure checkstyle and code style in dolphin scheduler:\n+1. Prepare Checkstyle configuration file: You could download it manually by [click here](https://github.com/apache/dolphinscheduler/blob/dev/style/checkstyle.xml), but find it in DolphinScheduler repository would be a better way. You could find configuration file in the path `style/checkstyle.xml` after you clone repository from Github.\n-1.checkstyle and code-style configuration files\n+2. Download Checkstyle plugins in Intellij IDEA: Search plugin by keyword **CheckStyle-IDEA** or install in [this page](https://plugins.jetbrains.com/plugin/1065-checkstyle-idea). You could see [install plugin](https://www.jetbrains.com/help/idea/managing-plugins.html#install_plugin_from_repo) if you do not know how to install plugin in Intellij IDEA\n-checkstyle: https://github.com/apache/dolphinscheduler/blob/dev/style/checkstyle.xml\n-\n-code-style: https://github.com/apache/dolphinscheduler/blob/dev/style/intellij-java-code-style.xml\n-\n-2.checkstyle configuration\n+3. Configure and activate Checkstyle and Intellij IDEA code-style: After completing the above steps, you could configure and activate it in your environment. You could find Checkstyle plugins in the path `Preferences -> Tool -> Checkstyle`. After that you could activate Checkstyles as screenshot show\n<p align=\"center\">\n<img src=\"/img/checkstyle-idea.png\" alt=\"checkstyle idea configuration\" />\n</p>\n-3.code-style configuration\n+For now your Checkstyle plugins are setup, it would show codes and files which out of style. We highly recommend you configure Intellij IDEA code-style for auto-formatting your code in Intellij IDEA, you could find this setting in `Preferences -> Editor -> Code Style -> Java` and then activate it as screenshot show\n<p align=\"center\">\n<img src=\"/img/code-style-idea.png\" alt=\"code style idea configuration\" />\n</p>\n-4.How to use checkstyle and code style\n-\n-After configuration, before submitting a Pull Request, the checkstyle tool will automatically help you format code and import order in the changed code file when you use `Ctrl+L`.\n+1. Format your codebase in Intellij IDEA before submit your pull request: After you done above steps, you could using Intellij IDEA shortcut `Command + L`(for Mac) or `Ctrl+L`(for Windows) to format your code. The best time to format your code is before you commit your change to your local git repository.\n### Question\n" }, { "change_type": "MODIFY", "old_path": "img/code-style-idea.png", "new_path": "img/code-style-idea.png", "diff": "Binary files a/img/code-style-idea.png and b/img/code-style-idea.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Use Checkstyle for Intellij auto format (#449)
36,284
16.10.2021 11:48:02
-28,800
ea6ce2c704090400faa381519442ae81ba082316
Correct dev leading page url wrong
[ { "change_type": "MODIFY", "old_path": "site_config/site.js", "new_path": "site_config/site.js", "diff": "@@ -77,7 +77,7 @@ export default {\n{\nkey: 'docsdev',\ntext: 'dev',\n- link: '/en-us/docs/dev/user_doc/quick-start.html',\n+ link: '/en-us/docs/dev/user_doc/guide/quick-start.html',\n},\n],\n},\n@@ -289,7 +289,7 @@ export default {\n{\nkey: 'docsdev',\ntext: 'dev',\n- link: '/zh-cn/docs/dev/user_doc/quick-start.html',\n+ link: '/zh-cn/docs/dev/user_doc/guide/quick-start.html',\n},\n],\n},\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Correct dev leading page url wrong (#454)
36,284
22.10.2021 11:34:14
-28,800
4b46fae83d4e3d42cb1d0f1511b8c83a2163210b
Move SPI from doc to development
[ { "change_type": "RENAME", "old_path": "development/en-us/backend-development.md", "new_path": "development/en-us/backend/backend-development.md", "diff": "" }, { "change_type": "RENAME", "old_path": "docs/en-us/dev/user_doc/alert_spi.md", "new_path": "development/en-us/backend/spi/alert.md", "diff": "" }, { "change_type": "RENAME", "old_path": "development/en-us/plugin-development.md", "new_path": "development/en-us/backend/spi/plugin.md", "diff": "" }, { "change_type": "RENAME", "old_path": "docs/en-us/dev/user_doc/registry_spi.md", "new_path": "development/en-us/backend/spi/registry.md", "diff": "" }, { "change_type": "RENAME", "old_path": "development/zh-cn/backend-development.md", "new_path": "development/zh-cn/backend/backend-development.md", "diff": "" }, { "change_type": "RENAME", "old_path": "docs/zh-cn/dev/user_doc/alert_spi.md", "new_path": "development/zh-cn/backend/spi/alert.md", "diff": "" }, { "change_type": "RENAME", "old_path": "development/zh-cn/plugin-development.md", "new_path": "development/zh-cn/backend/spi/plugin.md", "diff": "" }, { "change_type": "RENAME", "old_path": "docs/zh-cn/dev/user_doc/registry_spi.md", "new_path": "development/zh-cn/backend/spi/registry.md", "diff": "" }, { "change_type": "RENAME", "old_path": "docs/zh-cn/dev/user_doc/task_spi.md", "new_path": "development/zh-cn/backend/spi/task.md", "diff": "" }, { "change_type": "MODIFY", "old_path": "site_config/docsdev.js", "new_path": "site_config/docsdev.js", "diff": "@@ -246,14 +246,6 @@ export default {\ntitle: 'Dev-Quick-Start',\nlink: '/en-us/docs/dev/user_doc/dev_quick_start.html',\n},\n- {\n- title: 'Alert-SPI',\n- link: '/en-us/docs/dev/user_doc/alert_spi.html',\n- },\n- {\n- title: 'Registry-SPI',\n- link: '/en-us/docs/dev/user_doc/registry_spi.html',\n- },\n{\ntitle: 'Global-Params',\nlink: '/en-us/docs/dev/user_doc/globalParams.html',\n@@ -505,18 +497,6 @@ export default {\ntitle: 'Dev-Quick-Start',\nlink: '/zh-cn/docs/dev/user_doc/dev_quick_start.html',\n},\n- {\n- title: 'Alert-SPI',\n- link: '/zh-cn/docs/dev/user_doc/alert_spi.html',\n- },\n- {\n- title: 'Registry-SPI',\n- link: '/zh-cn/docs/dev/user_doc/registry_spi.html',\n- },\n- {\n- title: 'Task-SPI',\n- link: '/zh-cn/docs/dev/user_doc/task_spi.html',\n- },\n{\ntitle: 'Global-Params',\nlink: '/zh-cn/docs/dev/user_doc/globalParams.html',\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Move SPI from doc to development (#459)
36,278
22.10.2021 15:45:51
-28,800
f331bc37e26f7b249db3417ad00e20481f3ab100
[fix] correct the wrong explanation for `add a new article for docs` correct the wrong explanation for `add a new article for docs`
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -68,7 +68,7 @@ description: some description\n1. Add new .md file under docs/en-us or docs/zh-cn.\n2. Update site_config/docs.js, add a new entry in either en-us or zh-cn.\n3. Run docsite start locally to verify the article can be displayed correctly.\n-4. Send the pull request contains the *.md and development.js only.\n+4. Send the pull request contains the *.md and docs.js only.\nBest Regards.\nThanks for reading :)\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[fix] correct the wrong explanation for `add a new article for docs` (#448) correct the wrong explanation for `add a new article for docs`
36,339
25.10.2021 10:51:30
-28,800
efd580d7dadacd217ba69fbc4b488bad740447db
[Translation] Translating Task_SPI.md * docs: add en-us load-balance.md # Conflicts: # docs/en-us/1.3.5/user_doc/load-balance.md * update task_spi.md * Delete load-balance.md * update task_spi.md * fix git conflict
[ { "change_type": "ADD", "old_path": null, "new_path": "development/en-us/backend/spi/task.md", "diff": "+## DolphinScheduler Task SPI main design\n+\n+#### How to use development environment?\n+\n+First you need to execute the `mvn -U install package -Dmaven.test.skip=true` to install the plugin for generating the plugin JAR of the registry. The directory is: dolphinscheduler-dist/target/dolphinscheduler-dist-1.3.6-SNAPSHOT/lib/plugin/task (The version number will follow the change of the main version number)\n+\n+Executing this command will generate all plugins provided by default for all modules.\n+\n+Next, configure the plugin directory in (dolphinscheduler-server/src/main/resources/worker.properties)\n+\n+```\n+task.plugin.dir config the #task.plugin.dir config the Task Plugin dir . WorkerServer while find and load the Task Plugin Jar from this dir when deploy and start WorkerServer on the server .\n+task.plugin.dir=dolphinscheduler-dist/target/dolphinscheduler-dist-1.3.6-SNAPSHOT/lib/plugin/task\n+```\n+\n+The following configurations can be used for local development debugging, for example:\n+\n+```\n+maven.local.repository=/Users/localRepository\n+#task.plugin.binding config the task plugin need be load when development and run in IDE\n+task.plugin.binding=./dolphinscheduler-task-plugin/dolphinscheduler-task-shell/pom.xml\n+```\n+\n+Please configure according to the actual situation.\n+\n+#### How to do task plugin development?\n+\n+### Back-end development:\n+\n+org.apache.dolphinscheduler.spi.task.TaskChannel\n+\n+The plugin should implements the above interface. It mainly contains methods for creating tasks (task initialization, task run, etc.), task cancellation, and if it is a yarn task, it needs to implement org.apache.dolphinscheduler.plugin.task.api.AbstractYarnTask.\n+\n+We provide the API for all tasks to be accessed externally in the dolphinscheduler-task-api module. And dolphinscheduler-spi module is the spi common code base that defines all the plug-in modules like alert module, registry module etc. You can read it in detail to see it.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Translation] Translating Task_SPI.md (#456) * docs: add en-us load-balance.md # Conflicts: # docs/en-us/1.3.5/user_doc/load-balance.md * update task_spi.md * Delete load-balance.md * update task_spi.md * fix git conflict
36,285
27.10.2021 09:04:03
-28,800
004b0581b9b9eab1e01041404d7ec931bc650127
[download] update download url
[ { "change_type": "MODIFY", "old_path": "download/en-us/download.md", "new_path": "download/en-us/download.md", "diff": "@@ -7,8 +7,8 @@ Use the links below to download the Apache DolphinScheduler from one of our mirr\n## DolphinScheduler\n| Date | Version| | Downloads |\n|:---:|:--:|:--:|:--:|\n-| Oct. 26th, 2021 | 2.0.0-alpha | Source code| [[src]](https://dlcdn.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-src.tar.gz) [[asc]](https://dlcdn.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-src.tar.gz.asc) [[sha512]](https://dlcdn.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-src.tar.gz.sha512)|\n-| | | Binary Distribution| [[src]](https://dlcdn.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-bin.tar.gz) [[asc]](https://dlcdn.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-bin.tar.gz.asc) [[sha512]](https://dlcdn.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-bin.tar.gz.sha512)|\n+| Oct. 26th, 2021 | 2.0.0-alpha | Source code| [[src]](https://www.apache.org/dyn/closer.lua/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-src.tar.gz) [[asc]](https://downloads.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-src.tar.gz.asc) [[sha512]](https://downloads.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-src.tar.gz.sha512)|\n+| | | Binary Distribution| [[bin]](https://www.apache.org/dyn/closer.lua/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-bin.tar.gz) [[asc]](https://downloads.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-bin.tar.gz.asc) [[sha512]](https://downloads.apache.org/dolphinscheduler/2.0.0-alpha/apache-dolphinscheduler-2.0.0-alpha-bin.tar.gz.sha512)|\n| Oct. 22th, 2021 | 1.3.9 | Source code| [[src]](https://www.apache.org/dyn/closer.lua/dolphinscheduler/1.3.9/apache-dolphinscheduler-1.3.9-src.tar.gz) [[asc]](https://downloads.apache.org/dolphinscheduler/1.3.9/apache-dolphinscheduler-1.3.9-src.tar.gz.asc) [[sha512]](https://downloads.apache.org/dolphinscheduler/1.3.9/apache-dolphinscheduler-1.3.9-src.tar.gz.sha512)|\n| | | Binary Distribution| [[bin]](https://www.apache.org/dyn/closer.lua/dolphinscheduler/1.3.9/apache-dolphinscheduler-1.3.9-bin.tar.gz) [[asc]](https://downloads.apache.org/dolphinscheduler/1.3.9/apache-dolphinscheduler-1.3.9-bin.tar.gz.asc) [[sha512]](https://downloads.apache.org/dolphinscheduler/1.3.9/apache-dolphinscheduler-1.3.9-bin.tar.gz.sha512)|\n| Sep. 7th, 2021 | 1.3.8 | Source code| [[src]](https://www.apache.org/dyn/closer.lua/dolphinscheduler/1.3.8/apache-dolphinscheduler-1.3.8-src.tar.gz) [[asc]](https://downloads.apache.org/dolphinscheduler/1.3.8/apache-dolphinscheduler-1.3.8-src.tar.gz.asc) [[sha512]](https://downloads.apache.org/dolphinscheduler/1.3.8/apache-dolphinscheduler-1.3.8-src.tar.gz.sha512)|\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[download] update download url (#475)
36,277
28.10.2021 18:22:27
-28,800
9d55e362c503645ca90725248a697c0f847aa673
Remove an extra character Remove an extra character
[ { "change_type": "MODIFY", "old_path": "development/en-us/development-environment-setup.md", "new_path": "development/en-us/development-environment-setup.md", "diff": "@@ -29,7 +29,7 @@ There are two ways to configure the DolphinScheduler development environment, st\n## DolphinScheduler Standalone Quick Start\n-> **_Note:_**: Standalone server only for development and debugging, cause it use H2 Database, Zookeeper Testing Server which may not stable in production\n+> **_Note:_** Standalone server only for development and debugging, cause it use H2 Database, Zookeeper Testing Server which may not stable in production\n> If you want to test plugin, you can modify `plugin.bind` in StandaloneServer class or modify the configuration file by yourself.\n> Standalone is only supported in DolphinScheduler 1.3.9 and later versions\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Remove an extra character (#481) Remove an extra character
36,277
29.10.2021 12:34:29
-28,800
fefaebbacfac9b8d92812a45cbd9fc453ff55aca
Find some invalid URLs and some word spelling errors * Fix the style of a character Fix the style of a character * find some bugs in document. * Fix an error in my pr.
[ { "change_type": "MODIFY", "old_path": "community/en-us/release-post.md", "new_path": "community/en-us/release-post.md", "diff": "@@ -23,7 +23,7 @@ For example, after the release of `x.y.z`, the following updates are required:\n## Publish Image\n-Build docker image first, please refer to [How to build a Docker image?](/en-us/docs/latest/user_doc/docker-deployment.html)\n+Build docker image first, please refer to [How to build a Docker image?](/en-us/docs/latest/user_doc/guide/installation/docker.html)\nAnd then publish image\n" }, { "change_type": "MODIFY", "old_path": "community/en-us/release.md", "new_path": "community/en-us/release.md", "diff": "@@ -124,7 +124,7 @@ For encryption settings, please see [here](http://maven.apache.org/guides/mini/g\n### Update Release Notes\n```\n-https://github.com/apache/dolphinscheduler/blob/dev/RELEASE-NOTES.md\n+https://github.com/apache/dolphinscheduler/releases\n```\n### Create Release Branch\n" }, { "change_type": "MODIFY", "old_path": "development/en-us/architecture-design.md", "new_path": "development/en-us/architecture-design.md", "diff": "@@ -98,7 +98,7 @@ Before explaining the architecture of the schedule system, let us first understa\n- **UI**\n- The front-end page of the system provides various visual operation interfaces of the system. For details, see the <a href=\"/en-us/docs/latest/user_doc/system-manual.html\" target=\"_self\">System User Manual</a> section.\n+ The front-end page of the system provides various visual operation interfaces of the system. For details, see the <a href=\"/en-us/docs/latest/user_doc/guide/introduction.html\" target=\"_self\">System User Manual</a> section.\n" }, { "change_type": "MODIFY", "old_path": "development/en-us/development-environment-setup.md", "new_path": "development/en-us/development-environment-setup.md", "diff": "@@ -132,7 +132,7 @@ Following steps will guide how to start the DolphinScheduler backend service.\n</root>\n```\n-> **_Note:_**: Only DolphinScheduler 2.0 and later versions need to inatall plugin before start server. It not need before version 2.0.\n+> **_Note:_** Only DolphinScheduler 2.0 and later versions need to inatall plugin before start server. It not need before version 2.0.\n##### Server start\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Find some invalid URLs and some word spelling errors (#487) * Fix the style of a character Fix the style of a character * find some bugs in document. * Fix an error in my pr.
36,284
29.10.2021 16:47:56
-28,800
75b9346aa7c4267f6ea526767e60a32f7e6d66f3
Correct dolphinscheduler versions to 2.0.0-alpha
[ { "change_type": "MODIFY", "old_path": "site_config/site.js", "new_path": "site_config/site.js", "diff": "@@ -21,12 +21,12 @@ export default {\nchildren: [\n{\nkey: 'docs0',\n- text: 'latest(2.0.0)',\n+ text: 'latest(2.0.0-alpha)',\nlink: '/en-us/docs/latest/user_doc/guide/quick-start.html',\n},\n{\nkey: 'docs200',\n- text: '2.0.0',\n+ text: '2.0.0-alpha',\nlink: '/en-us/docs/2.0.0/user_doc/guide/quick-start.html',\n},\n{\n@@ -243,12 +243,12 @@ export default {\nchildren: [\n{\nkey: 'docs0',\n- text: 'latest(2.0.0)',\n+ text: 'latest(2.0.0-alpha)',\nlink: '/zh-cn/docs/latest/user_doc/guide/quick-start.html',\n},\n{\nkey: 'docs200',\n- text: '2.0.0',\n+ text: '2.0.0-alpha',\nlink: '/zh-cn/docs/2.0.0/user_doc/guide/quick-start.html',\n},\n{\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Correct dolphinscheduler versions to 2.0.0-alpha (#492)
36,307
01.11.2021 16:26:25
-28,800
37da4fc6db84da2ed5e1f84bfaec68beb8b6f4c6
[DS-6379][web-site] Add 'User' column in web-site * add column 'User' * move the logo wall into the 'User' * move the comments into the 'User' This closes
[ { "change_type": "MODIFY", "old_path": "src/pages/docs/index.md.jsx", "new_path": "src/pages/docs/index.md.jsx", "diff": "@@ -32,7 +32,7 @@ const docsSource = {\n'1.3.8': docs138Config,\n'1.3.9': docs139Config,\n'2.0.0': docs200Config,\n- 'dev': docsDevConfig,\n+ dev: docsDevConfig,\n};\nconst isValidVersion = version => version && docsSource.hasOwnProperty(version);\n@@ -63,7 +63,7 @@ class Docs extends Md2Html(Language) {\n} else {\nsubmenu.children.forEach((menuLevel3) => {\nmenuLevel3.link = menuLevel3.link.replace(`docs/${siteConfig.docsLatest}`, 'docs/latest');\n- })\n+ });\n}\n});\n});\n" }, { "change_type": "MODIFY", "old_path": "src/pages/home/index.jsx", "new_path": "src/pages/home/index.jsx", "diff": "@@ -110,7 +110,7 @@ class Home extends Language {\n}\nrender() {\n- const { starCount, forkCount, index } = this.state;\n+ const { starCount, forkCount } = this.state;\nconst language = this.getLanguage();\nconst dataSource = homeConfig[language];\nconst { headerType } = this.state;\n@@ -189,47 +189,6 @@ class Home extends Language {\n))}\n</Slider>\n</section>\n-\n- <section className=\"ourusers-section\">\n- <h3>{dataSource.ourusers.title}</h3>\n- <div className=\"button1-section\" id=\"buttonleft\">\n- {/* <button onClick={() => this.minusClick(dataSource.ourusers.list.length)}><img src=\"/img/gotoleft.png\" /></button> */}\n- <div className=\"overflow-section\">\n- <ul>\n- {\n- dataSource.ourusers.list.map((ureview, i) => (\n- <li key={i}>\n- <img src={ureview.img} />\n- </li>\n- ))\n- }\n- </ul>\n- </div>\n- {/* <button onClick={() => this.addClick(dataSource.userreview.list.length)}><img src=\"/img/gotoright.png\" /></button> */}\n- </div>\n- </section>\n- <section className=\"review-section\">\n- <h3>{dataSource.userreview.title}</h3>\n- <div className=\"button-section\" id=\"buttonleft\">\n- <button onClick={() => this.minusClick(dataSource.userreview.list.length)}><img src=\"/img/gotoleft.png\" /></button>\n- <div className=\"overflow-section\">\n- <ul>\n- {\n- dataSource.userreview.list.map((ureview, i) => (\n- <li key={i}>\n- <img src={ureview.img} />\n- <div className=\"name-section\">\n- <p className=\"pr\">{ureview.review}</p>\n- <p className=\"pn\">{ureview.name}</p>\n- </div>\n- </li>\n- ))[index]\n- }\n- </ul>\n- </div>\n- <button onClick={() => this.addClick(dataSource.userreview.list.length)}><img src=\"/img/gotoright.png\" /></button>\n- </div>\n- </section>\n<Footer logo=\"/img/ds_gray.svg\" language={language} />\n</div>\n);\n" }, { "change_type": "ADD", "old_path": null, "new_path": "src/pages/user/index.jsx", "diff": "+import React from 'react';\n+import ReactDOM from 'react-dom';\n+import Header from '../../components/header';\n+import Language from '../../components/language';\n+import homeConfig from '../../../site_config/home';\n+import './user.scss';\n+\n+class User extends Language {\n+ constructor(props) {\n+ super(props);\n+ this.state = {\n+ headerType: 'dark',\n+ starCount: 0,\n+ forkCount: 0,\n+ index: 0,\n+ };\n+ }\n+\n+ addClick = (length) => {\n+ if (this.state.index < length - 1) {\n+ this.setState({\n+ ...this.state,\n+ index: this.state.index + 1,\n+ });\n+ } else {\n+ this.setState({\n+ ...this.state,\n+ index: 0,\n+ });\n+ }\n+ }\n+\n+ minusClick = (length) => {\n+ if (this.state.index > 0) {\n+ this.setState({\n+ ...this.state,\n+ index: this.state.index - 1,\n+ });\n+ } else {\n+ this.setState({\n+ ...this.state,\n+ index: length - 1,\n+ });\n+ }\n+ }\n+\n+ render() {\n+ const { index } = this.state;\n+ const language = this.getLanguage();\n+ const { headerType } = this.state;\n+ const headerLogo = headerType === 'normal' ? '/img/hlogo_colorful.svg' : '/img/hlogo_white.svg';\n+ const dataSource = homeConfig[language];\n+ return (\n+ <div className=\"user-page\">\n+ <section className=\"top-section\">\n+ <Header\n+ currentKey=\"user\"\n+ type={headerType}\n+ logo={headerLogo}\n+ language={language}\n+ onLanguageChange={this.onLanguageChange}\n+ />\n+ </section>\n+ <section className=\"ourusers-section\">\n+ <h3>\n+ {dataSource.ourusers.title}\n+ </h3>\n+ <div className=\"button1-section\" id=\"buttonleft\">\n+ <div className=\"overflow-section\">\n+ <ul>\n+ {\n+ dataSource.ourusers.list.map((ureview, i) => (\n+ <li key={i}>\n+ <img src={ureview.img} />\n+ </li>\n+ ))\n+ }\n+ </ul>\n+ </div>\n+ </div>\n+ </section>\n+ <section className=\"review-section\">\n+ <h3>{dataSource.userreview.title}</h3>\n+ <div className=\"button-section\" id=\"buttonleft\">\n+ <button onClick={() => this.minusClick(dataSource.userreview.list.length)} >\n+ <img src=\"/img/gotoleft.png\" />\n+ </button>\n+ <div className=\"overflow-section\">\n+ <ul>\n+ {\n+ dataSource.userreview.list.map((ureview, i) => (\n+ <li key={i}>\n+ <img src={ureview.img} />\n+ <div className=\"name-section\">\n+ <p className=\"pr\">{ureview.review} </p>\n+ <p className=\"pn\">{ureview.name} </p>\n+ </div>\n+ </li>\n+ ))[index]\n+ }\n+ </ul>\n+ </div>\n+ <button onClick={() => this.addClick(dataSource.userreview.list.length)}>\n+ <img src=\"/img/gotoright.png\" />\n+ </button>\n+ </div>\n+ </section>\n+ </div>\n+ );\n+ }\n+}\n+\n+document.getElementById('root') && ReactDOM.render(<User />, document.getElementById('root'));\n+\n+\n+export default User;\n" }, { "change_type": "ADD", "old_path": null, "new_path": "src/pages/user/user.scss", "diff": "+@import '../../variables.scss';\n+@import '../../reset.scss';\n+\n+@keyframes slashStar {\n+ 0% {\n+ opacity: 1; }\n+ 100% {\n+ opacity: 0; }\n+}\n+\n+.user-page {\n+ .top-section {\n+ position: relative;\n+\n+ img {\n+ width: 100%;\n+ }\n+ .animation {\n+ position: absolute;\n+ width: 6px;\n+ height: 6px;\n+ border-radius: 50%;\n+ background-color: #1BE1F6;\n+ }\n+ .animation1 {\n+ left: 15%;\n+ top: 70%;\n+ animation: slashStar 2s ease-in-out 0.3s infinite;\n+ }\n+ .animation2 {\n+ left: 34%;\n+ top: 35%;\n+ animation: slashStar 2s ease-in-out 1.2s infinite;\n+ }\n+ .animation3 {\n+ left: 53%;\n+ top: 20%;\n+ animation: slashStar 2s ease-in-out 0.5s infinite;\n+ }\n+ .animation4 {\n+ left: 72%;\n+ top: 64%;\n+ animation: slashStar 2s ease-in-out 0.8s infinite;\n+ }\n+ .animation5 {\n+ left: 87%;\n+ top: 30%;\n+ animation: slashStar 2s ease-in-out 1.5s infinite;\n+ }\n+ .vertical-middle {\n+ position: absolute;\n+ left: 0;\n+ top: 40%;\n+ transform: translateY(-50%);\n+ box-sizing: border-box;\n+ width: 100%;\n+ text-align: center;\n+ padding: 0 20px;\n+ }\n+ .product-name {\n+ position: relative;\n+ display: inline-block;\n+ h2 {\n+ font-family: Avenir-Heavy;\n+ font-size: 46px;\n+ color: #FFF;\n+ text-align: center;\n+ word-break: break-word;\n+ margin: 0;\n+ }\n+ }\n+ .product-desc {\n+ opacity: 0.6;\n+ font-family: Avenir-Medium;\n+ font-size: 24px;\n+ color: #FFF;\n+ text-align: center;\n+ margin: 12px auto 0;\n+ max-width: 730px;\n+ }\n+ .button-area {\n+ text-align: center;\n+ margin-top: 40px;\n+ .button {\n+ margin-right: 20px;\n+ }\n+ .button:last-child {\n+ margin-right: 0;\n+ }\n+ }\n+ .github-buttons {\n+ margin-top: 20px;\n+ text-align: center;\n+ a {\n+ margin-right: 12px;\n+ &:last-child {\n+ margin-right: 0;\n+ }\n+ div {\n+ border-radius: 2px;\n+ display: inline-block;\n+ height: 24px;\n+ line-height: 24px;\n+ font-size: 12px;\n+ padding: 0 8px;\n+ color: #fff;\n+ background: rgba(255, 255, 255, 0.2);\n+ img {\n+ width: 16px;\n+ height: 16px;\n+ vertical-align: middle;\n+ margin-top: -6px;\n+ }\n+ .count {\n+ font-family: TXD_D_Medium;\n+ font-size: 16px;\n+ padding-left: 4px;\n+ display: inline-block;\n+ height: 100%;\n+ min-width: 30px;\n+ }\n+ }\n+ }\n+ }\n+ .version-note {\n+ text-align: center;\n+ margin: 22px 0 10px;\n+ a {\n+ text-decoration: none;\n+ display: inline-block;\n+ font-family: Avenir-Heavy;\n+ font-size: 14px;\n+ color: #FFF;\n+ text-align: center;\n+ background: #46484B;\n+ border-radius: 2px;\n+ line-height: 24px;\n+ padding: 0 6px;\n+ margin-right: 10px;\n+ &:last-child {\n+ margin-right: 0;\n+ }\n+ }\n+ }\n+ .release-date {\n+ font-family: Avenir-Medium;\n+ font-size: 12px;\n+ color: #999;\n+ text-align: center;\n+ }\n+ }\n+\n+ .ourusers-section{\n+ display: flex;\n+ flex-direction: column;\n+ align-items: center;\n+ margin-bottom: 40px;\n+ margin:110px auto;\n+ h3 {\n+ font-family: Avenir-Heavy;\n+ font-size: 36px;\n+ color: #333;\n+ text-align: center;\n+ margin-top: 40px;\n+ margin-bottom: 60px;\n+ }\n+ .button1-section{\n+ display: flex;\n+ flex-direction: row;\n+ align-items: center;\n+ justify-content: center;\n+ width: 100%;\n+ img{\n+ width: 80px;\n+ height: 80px;\n+ &:hover {\n+ box-shadow: 0px 0px 12px 0px rgba(9, 97, 197, 0.1);\n+ }\n+ }\n+ button{\n+ border: hidden;\n+ background-color: transparent;\n+ }\n+ .overflow-section{\n+ display: flex;\n+ width: 70%;\n+ ul{\n+ display: inline-flex;\n+ flex-wrap: wrap;\n+ li{\n+ list-style: none;\n+ margin: 5px 5px 5px 5px;\n+ img{\n+ width: 100px;\n+ height: 100px;\n+ &:hover {\n+ box-shadow: 0px 0px 12px 0px rgba(9, 97, 197, 0.1);\n+ }\n+ }\n+ }\n+ }\n+ }\n+ }\n+ }\n+ .review-section{\n+ display: flex;\n+ flex-direction: column;\n+ align-items: center;\n+ margin-bottom: 40px;\n+ h3 {\n+ font-family: Avenir-Heavy;\n+ font-size: 36px;\n+ color: #333;\n+ text-align: center;\n+ margin-top: 40px;\n+ }\n+ .button-section{\n+ display: flex;\n+ flex-direction: row;\n+ align-items: center;\n+ justify-content: center;\n+ width: 100%;\n+ img{\n+ width: 80px;\n+ height: 80px;\n+ &:hover {\n+ box-shadow: 0px 0px 12px 0px rgba(9, 97, 197, 0.1);\n+ }\n+ }\n+ button{\n+ border: hidden;\n+ background-color: transparent;\n+ }\n+ .overflow-section{\n+ overflow: hidden;\n+ width: 65%;\n+ height: 350px;\n+ margin: 40px 0px 20px 0px;\n+ background: #F9FAFA;\n+ display: flex;\n+ align-items: center;\n+ ul{\n+ display: -webkit-box;\n+ align-items: center;\n+ flex-direction: row;\n+ width: 100%;\n+ li{\n+ display: flex;\n+ flex-direction: row;\n+ align-items: center;\n+ list-style: none;\n+ width: 100%;\n+ img{\n+ width: 150px;\n+ height: 150px;\n+ margin: 0 40px 0 50px;\n+ }\n+ .name-section{\n+ display: flex;\n+ flex-direction: column;\n+ margin-left: 20px;\n+ }\n+ p{\n+ font-family: Avenir-Heavy;\n+ }\n+ .pr{\n+ font-size: 20px;\n+ margin-right: 20px;\n+ }\n+ .pn{\n+ font-size: 18px;\n+ text-align: right;\n+ margin-top: 40px;\n+ margin-right: 20px;\n+ }\n+ }\n+ }\n+ }\n+ }\n+ }\n+\n+ @media screen and (max-width: $mobileWidth) {\n+ .introduction-section {\n+ padding: 0 20px;\n+ &::before {\n+ left: 20px;\n+ }\n+ &::after {\n+ left: 19px;\n+ }\n+ }\n+ .feature-section, .users-section {\n+ padding-left: 20px;\n+ padding-right: 20px;\n+ }\n+ }\n+}\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[DS-6379][web-site] Add 'User' column in web-site (#493) * add column 'User' * move the logo wall into the 'User' * move the comments into the 'User' This closes #6379
36,277
02.11.2021 19:20:48
-28,800
28199714249e426349bc5670c23ec74e9cf32ab4
Fixed some broken hyperlinks * Fix the style of a character Fix the style of a character * find some bugs in document. * Fix an error in my pr. * Fix some broken web links. * Fix broken links in dev branch.
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/docker.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/installation/docker.md", "diff": "@@ -60,7 +60,7 @@ The default username is `admin` and the default password is `dolphinscheduler123\n<img src=\"/img/login_en.png\" width=\"60%\" />\n</p>\n-Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/2.0.0/user_doc/quick-start.html) to explore how to use DolphinScheduler\n+Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/2.0.0/user_doc/guide/quick-start.html) to explore how to use DolphinScheduler\n### The Second Way: Start via specifying the existing PostgreSQL and ZooKeeper service\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/kubernetes.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/installation/kubernetes.md", "diff": "@@ -67,7 +67,7 @@ And then access the web: http://$NODE_IP:$NODE_PORT/dolphinscheduler\nThe default username is `admin` and the default password is `dolphinscheduler123`\n-Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/2.0.0/user_doc/quick-start.html) to explore how to use DolphinScheduler\n+Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/2.0.0/user_doc/guide/quick-start.html) to explore how to use DolphinScheduler\n## Uninstalling the Chart\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/installation/docker.md", "new_path": "docs/en-us/dev/user_doc/guide/installation/docker.md", "diff": "@@ -60,7 +60,7 @@ The default username is `admin` and the default password is `dolphinscheduler123\n<img src=\"/img/login_en.png\" width=\"60%\" />\n</p>\n-Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/1.3.8/user_doc/quick-start.html) to explore how to use DolphinScheduler\n+Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/dev/user_doc/guide/quick-start.html) to explore how to use DolphinScheduler\n### The Second Way: Start via specifying the existing PostgreSQL and ZooKeeper service\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/installation/kubernetes.md", "new_path": "docs/en-us/dev/user_doc/guide/installation/kubernetes.md", "diff": "@@ -67,7 +67,7 @@ And then access the web: http://$NODE_IP:$NODE_PORT/dolphinscheduler\nThe default username is `admin` and the default password is `dolphinscheduler123`\n-Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/1.3.8/user_doc/quick-start.html) to explore how to use DolphinScheduler\n+Please refer to the `Quick Start` in the chapter [User Manual](/en-us/docs/dev/user_doc/guide/quick-start.html) to explore how to use DolphinScheduler\n## Uninstalling the Chart\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Fixed some broken hyperlinks (#495) * Fix the style of a character Fix the style of a character * find some bugs in document. * Fix an error in my pr. * Fix some broken web links. * Fix broken links in dev branch.
36,284
13.11.2021 16:48:02
-28,800
a19944c1beaa89d0a26eadd6f120b4aa2307a845
Add change github issue template after release post
[ { "change_type": "MODIFY", "old_path": "community/en-us/release-post.md", "new_path": "community/en-us/release-post.md", "diff": "@@ -21,6 +21,12 @@ For example, after the release of `x.y.z`, the following updates are required:\n- `src/pages/docs/index.md.jsx`: Add `'x.y.z': docsxyzConfig,`\n- `download/en-us/download.md` and `download/zh-cn/download.md`: add the download of the x.y.z release package\n+## Add New Version To GitHub's bug-report.yml\n+\n+DolphinScheduler's GitHub [bug-report](https://github.com/apache/dolphinscheduler/blob/dev/.github/ISSUE_TEMPLATE/bug-report.yml)\n+issue template have **Version** selection bottom. So after we release DolphinScheduler we should and the new version to\n+bug-report.yml\n+\n## Publish Image\nBuild docker image first, please refer to [How to build a Docker image?](/en-us/docs/latest/user_doc/guide/installation/docker.html)\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add change github issue template after release post (#517)
36,263
14.11.2021 11:58:09
-28,800
ef3c7a497e9d84fa93689eeabec1bb68b18cc425
Update deployment documentation and fix md format errors
[ { "change_type": "MODIFY", "old_path": "development/en-us/development-environment-setup.md", "new_path": "development/en-us/development-environment-setup.md", "diff": "@@ -83,13 +83,13 @@ Download [ZooKeeper](https://www.apache.org/dyn/closer.lua/zookeeper/zookeeper-3\n#### Database\n-The DolphinScheduler's metadata is stored in relational database. Currently supported MySQL and Postgresql. We use MySQL as an example. Start the database and create a new database named dolphinscheduler as DolphinScheduler metabase.\n+The DolphinScheduler's metadata is stored in relational database. Currently supported MySQL and Postgresql. We use MySQL as an example. Start the database and create a new database named dolphinscheduler as DolphinScheduler metabase\n-After creating the new database, run the sql file under `dolphinscheduler/sql/dolphinscheduler_mysql.sql` directly in mysql to complete the database initialization.\n+After creating the new database, run the sql file under `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql` directly in MySQL to complete the database initialization\n#### Start Backend Server\n-Following steps will guide how to start the DolphinScheduler backend service.\n+Following steps will guide how to start the DolphinScheduler backend service\n##### Backend Start Prepare\n@@ -111,7 +111,7 @@ Following steps will guide how to start the DolphinScheduler backend service.\ntask.plugin.dir=./dolphinscheduler-dist/target/dolphinscheduler-dist-${VERSION}/lib/plugin/task\n```\n* File change\n- * If you use mysql as your metadata database, you need to modify `dolphinscheduler/pom.xml` and change the dependency `mysql-connector-java` from `scope` to `compile`. This step is not necessary to use postgresql.\n+ * If you use MySQL as your metadata database, you need to modify `dolphinscheduler/pom.xml` and change the `scope` of the `mysql-connector-java` dependency to `compile`. This step is not necessary to use PostgreSQL\n* Modify database configuration, modify the database configuration in the `dolphinscheduler/dolphinscheduler-dao/datasource.properties`\n```properties\n@@ -122,7 +122,15 @@ Following steps will guide how to start the DolphinScheduler backend service.\nspring.datasource.password=dolphinscheduler\n```\n-* Log level: Add one single line `<appender-ref ref=\"STDOUT\"/>` in file `dolphinscheduler-server/src/main/resources/logback-worker.xml`, `dolphinscheduler-server/src/main/resources/logback-master.xml`, `dolphinscheduler-api/src/main/resources/logback-api.xml` to show log in console, here we add the result after modify as below\n+* Log level: add a line `<appender-ref ref=\"STDOUT\"/>` to the following configuration to enable the log to be displayed on the command line\n+\n+ `dolphinscheduler-server/src/main/resources/logback-worker.xml`\n+\n+ `dolphinscheduler-server/src/main/resources/logback-master.xml`\n+\n+ `dolphinscheduler-api/src/main/resources/logback-api.xml`\n+\n+ here we add the result after modify as below:\n```diff\n<root level=\"INFO\">\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -83,7 +83,7 @@ mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'localhost' IDENTI\nmysql> flush privileges;\n```\n-Run the latest schema file manually in `sql/dolphinscheudler_*.sql` to initialization you database. If you use mysql, please run `sql/dolphinscheudler_mysql.sql`, for postgresql run `sql/dolphinscheudler_postgre.sql`.\n+Run the latest schema file manually in `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_*.sql` to initialization you database. If you use MySQL, please run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql`, for PostgreSQL run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgre.sql`\n> **_NOTICE:_** In the latest version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken, We have created a [issue-6597][issue] to track and fix this problem\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -83,7 +83,7 @@ mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'localhost' IDENTI\nmysql> flush privileges;\n```\n-Run the latest schema file manually in `sql/dolphinscheudler_*.sql` to initialization you database. If you use mysql, please run `sql/dolphinscheudler_mysql.sql`, for postgresql run `sql/dolphinscheudler_postgre.sql`.\n+Run the latest schema file manually in `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_*.sql` to initialization you database. If you use MySQL, please run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql`, for PostgreSQL run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgre.sql`\n> **_NOTICE:_** In the latest version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken, We have created a [issue-6597][issue] to track and fix this problem\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Update deployment documentation and fix md format errors (#516)
36,284
30.11.2021 18:04:43
-28,800
ec32209a0f60c0f899d897677924bdd1388f566c
Add Python task how to use python virtualenv
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/task/python.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/task/python.md", "diff": "</p>\n- Script: Python program developed by the user\n+- Environment Name: Specific which Python interpreter would be use and run `Script`. If you want to use Python virtualenv, you should create multiply environments for each virtualenv.\n- Resources: refers to the list of resource files that need to be called in the script\n- User-defined parameter: It is a local user-defined parameter of Python, which will replace the content with \\${variable} in the script\n-- Note: If you import the python file under the resource directory tree, you need to add the __init__.py file\n+- Note: If you import the python file under the resource directory tree, you need to add the `__init__.py` file\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/python.md", "new_path": "docs/en-us/dev/user_doc/guide/task/python.md", "diff": "</p>\n- Script: Python program developed by the user\n+- Environment Name: Specific which Python interpreter would be use and run `Script`. If you want to use Python virtualenv, you should create multiply environments for each virtualenv.\n- Resources: refers to the list of resource files that need to be called in the script\n- User-defined parameter: It is a local user-defined parameter of Python, which will replace the content with \\${variable} in the script\n-- Note: If you import the python file under the resource directory tree, you need to add the __init__.py file\n+- Note: If you import the python file under the resource directory tree, you need to add the `__init__.py` file\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add Python task how to use python virtualenv (#555)
36,282
01.12.2021 19:17:22
-28,800
d0d5befab4a6485e9e62794ebd29915f0e7796aa
upload img Lizhi case study(en) * create Lizhi case study blog create Lizhi case study blog * Update blog.js * upload img upload img * update img update img * update img * upload img upload img * Delete present 1.jpg * Delete present 2.jpg * Delete present 3.jpg
[ { "change_type": "ADD", "old_path": "img/present1.jpg", "new_path": "img/present1.jpg", "diff": "Binary files /dev/null and b/img/present1.jpg differ\n" }, { "change_type": "ADD", "old_path": "img/present2.jpg", "new_path": "img/present2.jpg", "diff": "Binary files /dev/null and b/img/present2.jpg differ\n" }, { "change_type": "ADD", "old_path": "img/present3.jpg", "new_path": "img/present3.jpg", "diff": "Binary files /dev/null and b/img/present3.jpg differ\n" }, { "change_type": "ADD", "old_path": "img/streamline.png", "new_path": "img/streamline.png", "diff": "Binary files /dev/null and b/img/streamline.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
upload img Lizhi case study(en) (#559) * create Lizhi case study blog create Lizhi case study blog * Update blog.js * upload img upload img * update img update img * update img * upload img upload img * Delete present 1.jpg * Delete present 2.jpg * Delete present 3.jpg
36,273
05.12.2021 21:59:21
-28,800
6b03f1fde2e14578f346228aee169ec2139f8a31
fix pull-request.md missing Pull Request Branch part
[ { "change_type": "MODIFY", "old_path": "community/en-us/development/pull-request.md", "new_path": "community/en-us/development/pull-request.md", "diff": "@@ -7,7 +7,7 @@ In Pull Request, we try not to discuss the implementation of the code. The gener\n## Specification\n-### Pull Request title\n+### Pull Request Title\nTitle Format: [`Pull Request Type`-`Issue No`][`Module Name`] `Pull Request Description`\n@@ -52,7 +52,11 @@ The corresponding relationship between `Pull Request Type` and `Issue Type` is a\n`Issue No` refers to the Issue number corresponding to the current Pull Request to be resolved, `Module Name` is the same as the `Module Name` of Issue.\n-### Pull Request content\n+### Pull Request Branch\n+\n+Branch name format: `Pull Request type`-`Issue number`. e.g. Feature-3333\n+\n+### Pull Request Content\nPlease refer to the commit message section.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
fix pull-request.md missing Pull Request Branch part (#560)
36,348
14.12.2021 19:11:51
-28,800
27709cbf3886b17b9b7078bced45aadf80340815
modify the photo of dailidong in the index page
[ { "change_type": "ADD", "old_path": "img/dailidong.jpg", "new_path": "img/dailidong.jpg", "diff": "Binary files /dev/null and b/img/dailidong.jpg differ\n" }, { "change_type": "DELETE", "old_path": "img/dailidong.png", "new_path": "img/dailidong.png", "diff": "Binary files a/img/dailidong.png and /dev/null differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
modify the photo of dailidong in the index page (#572)
36,273
15.12.2021 11:56:46
-28,800
4b348874aa3d9821fb068c9204ef33cbae00c457
[Bug-6939][website] Miswritten word in 'hardware.md' fix miswritten word in 'hardware.md' change some sub-titles first letters to capital
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/hardware.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/installation/hardware.md", "diff": "-# Hareware Environment\n+# Hardware Environment\nDolphinScheduler, as an open-source distributed workflow task scheduling system, can be well deployed and run in Intel architecture server environments and mainstream virtualization environments, and supports mainstream Linux operating system environments.\n-## 1. Linux operating system version requirements\n+## 1. Linux Operating System Version Requirements\n| OS | Version |\n| :----------------------- | :----------: |\n@@ -14,7 +14,7 @@ DolphinScheduler, as an open-source distributed workflow task scheduling system,\n> **Attention:**\n>The above Linux operating systems can run on physical servers and mainstream virtualization environments such as VMware, KVM, and XEN.\n-## 2. Recommended server configuration\n+## 2. Recommended Server Configuration\nDolphinScheduler supports 64-bit hardware platforms with Intel x86-64 architecture. The following recommendation is made for server hardware configuration in a production environment:\n### Production Environment\n@@ -27,7 +27,7 @@ DolphinScheduler supports 64-bit hardware platforms with Intel x86-64 architectu\n> - The hard disk size configuration is recommended by more than 50GB. The system disk and data disk are separated.\n-## 3. Network requirements\n+## 3. Network Requirements\nDolphinScheduler provides the following network port configurations for normal operation:\n@@ -41,7 +41,7 @@ DolphinScheduler provides the following network port configurations for normal o\n> - MasterServer and WorkerServer do not need to enable communication between the networks. As long as the local ports do not conflict.\n> - Administrators can adjust relevant ports on the network side and host-side according to the deployment plan of DolphinScheduler components in the actual environment.\n-## 4. Browser requirements\n+## 4. Browser Requirements\nDolphinScheduler recommends Chrome and the latest browsers which using Chrome Kernel to access the front-end visual operator page.\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/installation/hardware.md", "new_path": "docs/en-us/dev/user_doc/guide/installation/hardware.md", "diff": "-# Hareware Environment\n+# Hardware Environment\nDolphinScheduler, as an open-source distributed workflow task scheduling system, can be well deployed and run in Intel architecture server environments and mainstream virtualization environments, and supports mainstream Linux operating system environments.\n-## 1. Linux operating system version requirements\n+## 1. Linux Operating System Version Requirements\n| OS | Version |\n| :----------------------- | :----------: |\n@@ -14,7 +14,7 @@ DolphinScheduler, as an open-source distributed workflow task scheduling system,\n> **Attention:**\n>The above Linux operating systems can run on physical servers and mainstream virtualization environments such as VMware, KVM, and XEN.\n-## 2. Recommended server configuration\n+## 2. Recommended Server Configuration\nDolphinScheduler supports 64-bit hardware platforms with Intel x86-64 architecture. The following recommendation is made for server hardware configuration in a production environment:\n### Production Environment\n@@ -27,7 +27,7 @@ DolphinScheduler supports 64-bit hardware platforms with Intel x86-64 architectu\n> - The hard disk size configuration is recommended by more than 50GB. The system disk and data disk are separated.\n-## 3. Network requirements\n+## 3. Network Requirements\nDolphinScheduler provides the following network port configurations for normal operation:\n@@ -41,7 +41,7 @@ DolphinScheduler provides the following network port configurations for normal o\n> - MasterServer and WorkerServer do not need to enable communication between the networks. As long as the local ports do not conflict.\n> - Administrators can adjust relevant ports on the network side and host-side according to the deployment plan of DolphinScheduler components in the actual environment.\n-## 4. Browser requirements\n+## 4. Browser Requirements\nDolphinScheduler recommends Chrome and the latest browsers which using Chrome Kernel to access the front-end visual operator page.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Bug-6939][website] Miswritten word in 'hardware.md' (#561) fix miswritten word in 'hardware.md' change some sub-titles first letters to capital
36,361
15.12.2021 13:42:10
-28,800
4f98ce25a65c85cad038d629ba5871932de0b1d3
fix upgrade.md 404 link
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/upgrade.md", "new_path": "docs/en-us/2.0.0/user_doc/upgrade.md", "diff": "## 5. Backend Service Upgrade.\n### 5.1 Modify the Content in `conf/config/install_config.conf` File.\n-- Standalone Deployment please refer the [6, Modify running arguments] in [Standalone-Deployment](/en-us/docs/2.0.0/user_doc/standalone-deployment.html).\n-- Cluster Deployment please refer the [6, Modify running arguments] in [Cluster-Deployment](/en-us/docs/2.0.0/user_doc/cluster-deployment.html).\n+- Standalone Deployment please refer the [6, Modify running arguments] in [Standalone-Deployment](/en-us/docs/2.0.0/user_doc/guide/installation/standalone.html).\n+- Cluster Deployment please refer the [6, Modify running arguments] in [Cluster-Deployment](/en-us/docs/2.0.0/user_doc/guide/installation/cluster.html).\n#### Masters Need Attentions\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/upgrade.md", "new_path": "docs/en-us/dev/user_doc/upgrade.md", "diff": "## 5. Backend Service Upgrade.\n### 5.1 Modify the Content in `conf/config/install_config.conf` File.\n-- Standalone Deployment please refer the [6, Modify running arguments] in [Standalone-Deployment](/en-us/docs/1.3.8/user_doc/standalone-deployment.html).\n-- Cluster Deployment please refer the [6, Modify running arguments] in [Cluster-Deployment](/en-us/docs/1.3.8/user_doc/cluster-deployment.html).\n+- Standalone Deployment please refer the [6, Modify running arguments] in [Standalone-Deployment](/en-us/docs/dev/user_doc/guide/installation/standalone.html).\n+- Cluster Deployment please refer the [6, Modify running arguments] in [Cluster-Deployment](/en-us/docs/dev/user_doc/guide/installation/cluster.html).\n#### Masters Need Attentions\nCreate worker group in 1.3.1 version has different design:\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
fix upgrade.md 404 link (#574) Co-authored-by: linjicong <[email protected]>
36,319
15.12.2021 18:22:22
-28,800
97d25fa843984372d1a32db5dc55beb91bf6215e
Delete the extra brace
[ { "change_type": "MODIFY", "old_path": "src/components/header/index.jsx", "new_path": "src/components/header/index.jsx", "diff": "@@ -300,7 +300,6 @@ class Header extends React.Component {\n</div>\n<div className=\"mobile-menu-dummy\" onClick={this.toggleMenu} />\n</div>\n- }\n</div>\n</header>\n);\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Delete the extra brace
36,284
15.12.2021 21:40:11
-28,800
f6085e164add2321866eefeb2c49a45c79690a81
Add asf config to strict behavior
[ { "change_type": "MODIFY", "old_path": ".asf.yaml", "new_path": ".asf.yaml", "diff": "-# Web site staging services:\n-staging:\n- profile: ~\n- whoami: master\n- foo: trigger\n+# Licensed to the Apache Software Foundation (ASF) under one or more\n+# contributor license agreements. See the NOTICE file distributed with\n+# this work for additional information regarding copyright ownership.\n+# The ASF licenses this file to You under the Apache License, Version 2.0\n+# (the \"License\"); you may not use this file except in compliance with\n+# the License. You may obtain a copy of the License at\n+#\n+# http://www.apache.org/licenses/LICENSE-2.0\n+#\n+# Unless required by applicable law or agreed to in writing, software\n+# distributed under the License is distributed on an \"AS IS\" BASIS,\n+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n+# See the License for the specific language governing permissions and\n+# limitations under the License.\n+#\n-publish:\n- whoami: asf-site\n+github:\n+ description: Apache DolphinScheduler website\n+ homepage: https://dolphinscheduler.apache.org/\n+ labels:\n+ - dolphinscheduler\n+ - website\n+ - apache\n+ enabled_merge_buttons:\n+ squash: true\n+ merge: false\n+ rebase: false\n+ protected_branches:\n+ master:\n+ required_status_checks:\n+ strict: true\n+ required_pull_request_reviews:\n+ dismiss_stale_reviews: true\n+ required_approving_review_count: 1\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add asf config to strict behavior (#580)
36,313
16.12.2021 20:35:26
-28,800
c446b47045404da8481c2995c362d9a154d3775d
[Fix] Update name.
[ { "change_type": "RENAME", "old_path": "blog/en-us/youzan-case-study(En).md", "new_path": "blog/en-us/YouZan-case-study.md", "diff": "" }, { "change_type": "MODIFY", "old_path": "site_config/blog.js", "new_path": "site_config/blog.js", "diff": "@@ -8,7 +8,7 @@ export default {\nauthor: 'Debra Chen',\ndateStr: '2021-12-16',\ndesc: 'Youzan case study(En)',\n- link: '/en-us/blog/youzan-case-study(En).html',\n+ link: '/en-us/blog/YouZan-case-study.html',\n},\n{\ntitle: 'A Formidable Combination of Lizhi Machine Learning Platform& DolphinScheduler Creates New Paradigm for Data Process in the Future!',\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Fix] Update name. (#584)
36,284
17.12.2021 10:07:00
-28,800
c72a9b6b8412337b0db8d60cb9d5c751d6f1425f
Recover website deploy configuration
[ { "change_type": "MODIFY", "old_path": ".asf.yaml", "new_path": ".asf.yaml", "diff": "# limitations under the License.\n#\n+# Web Site Deployment Service for Git Repositories\n+staging:\n+ profile: ~\n+ whoami: master\n+ foo: trigger\n+\n+publish:\n+ whoami: asf-site\n+\n+# GitHub setting\ngithub:\ndescription: Apache DolphinScheduler website\nhomepage: https://dolphinscheduler.apache.org/\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Recover website deploy configuration (#587)
36,342
20.12.2021 18:44:19
-28,800
e0a0c7de119e7c51cb4294c9a7d353b06c96da8a
solve the issues-7496 by replacing with en picture
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/architecture/design.md", "new_path": "docs/en-us/dev/user_doc/architecture/design.md", "diff": "@@ -236,12 +236,12 @@ In the early scheduling design, if there is no priority design and the fair sche\n- The priority of the process definition is to consider that some processes need to be processed before other processes. This can be configured when the process is started or scheduled to start. There are 5 levels in total, which are HIGHEST, HIGH, MEDIUM, LOW, and LOWEST. As shown below\n<p align=\"center\">\n- <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/process_priority.png\" alt=\"Process priority configuration\" width=\"40%\" />\n+ <img src=\"https://user-images.githubusercontent.com/10797147/146744784-eb351b14-c94a-4ed6-8ba4-5132c2a3d116.png\" alt=\"Process priority configuration\" width=\"40%\" />\n</p>\n- The priority of the task is also divided into 5 levels, followed by HIGHEST, HIGH, MEDIUM, LOW, LOWEST. As shown below\n<p align=\"center\">\n- <img src=\"https://analysys.github.io/easyscheduler_docs_cn/images/task_priority.png\" alt=\"Task priority configuration\" width=\"35%\" />\n+ <img src=\"https://user-images.githubusercontent.com/10797147/146744830-5eac611f-5933-4f53-a0c6-31613c283708.png\" alt=\"Task priority configuration\" width=\"35%\" />\n</p>\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
solve the issues-7496 by replacing with en picture (#598) Co-authored-by: yaoyingzhe <[email protected]>
36,313
21.12.2021 20:56:09
-28,800
f1ecde108bbe2f7fabfdd4ea65ec470ef2c7470f
[Feature] Add committer.
[ { "change_type": "MODIFY", "old_path": "community/en-us/team.md", "new_path": "community/en-us/team.md", "diff": "@@ -7,7 +7,7 @@ The DolphinScheduler team is comprised of Members and Contributors. Members have\n### PMC\n| Public Name | Apache ID | GitHub ID |\n-| ----------------- | ------------ | -------------- |\n+|-------------------| ------------ | -------------- |\n| Furkan Kamaci | kamaci | kamaci |\n| Gang Li | lgcareer | lgcareer |\n| Guo Jiwei | technoboy | Technoboy- |\n@@ -23,15 +23,15 @@ The DolphinScheduler team is comprised of Members and Contributors. Members have\n| Wu Baoqi | baoqiwu | Baoqi |\n| Xiaochun Liu | liuxiaochun | khadgarmage |\n| ZijJian Gong | millionfor | millionfor |\n+| Calvin Kirs | kirs | CalvinKirs |\n### Committer\n| Public Name | Apache ID | GitHub ID |\n-| ------------- | ------------ | ---------------- |\n+|---------------|--------------|-------------------|\n| BoYi Zhang | zhangboyi | BoYiZhang |\n| Caibiao Xiang | break60 | break60 |\n-| Calvin Kirs | kirs | CalvinKirs |\n| Chong Zhuang | kerwin | zhuangchong |\n| Cong Huang | chongchongzi | chongchongzi |\n| Hemin Wen | wenhemin | wen-hemin |\n@@ -46,6 +46,10 @@ The DolphinScheduler team is comprised of Members and Contributors. Members have\n| Xingchun Chen | chenxingchun | xingchun-chen |\n| Yichao Yang | yangyichao | yangyichao-mango |\n| Zongyao Zhang | lfyee | lfyee |\n+| Zhenxu Ke | kezhenxu94 | kezhenxu94 |\n+| Jiajie Zhong | zhongjiajie | zhongjiajie |\n+| Yizhi Wang | wangyizhi | Wangyizhi1 |\n+| ShunFeng Cai | caishunfeng | caishunfeng |\n## Contributors\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature] Add committer. (#604)
36,284
29.12.2021 17:15:52
-28,800
384d5ed25d3eccb0a1398d7d587ca7d80e4096bc
Move skywalking-agent to observability(1.3.9-2.0.2) We just move version after 1.3.9 cause >1.3.9 is LTS
[ { "change_type": "MODIFY", "old_path": "docs/en-us/1.3.9/user_doc/skywalking-agent-deployment.md", "new_path": "docs/en-us/1.3.9/user_doc/skywalking-agent-deployment.md", "diff": "-SkyWalking Agent Deployment\n+SkyWalking Agent\n=============================\nThe dolphinscheduler-skywalking module provides [SkyWalking](https://skywalking.apache.org/) monitor agent for the Dolphinscheduler project.\n" }, { "change_type": "RENAME", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/skywalking-agent.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/observability/skywalking-agent.md", "diff": "-SkyWalking Agent Deployment\n+SkyWalking Agent\n=============================\nThe dolphinscheduler-skywalking module provides [SkyWalking](https://skywalking.apache.org/) monitor agent for the Dolphinscheduler project.\n" }, { "change_type": "RENAME", "old_path": "docs/en-us/2.0.1/user_doc/guide/installation/skywalking-agent.md", "new_path": "docs/en-us/2.0.1/user_doc/guide/observability/skywalking-agent.md", "diff": "-SkyWalking Agent Deployment\n+SkyWalking Agent\n=============================\nThe dolphinscheduler-skywalking module provides [SkyWalking](https://skywalking.apache.org/) monitor agent for the Dolphinscheduler project.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Move skywalking-agent to observability(1.3.9-2.0.2) (#611) We just move version after 1.3.9 cause >1.3.9 is LTS
36,280
05.01.2022 22:48:51
-28,800
5b27ec588ec1dde736067baf2da5b75dd2d793f9
[Fix-7668][docs] Fix Modify the prompt message of MySQL driver version * Table shows error problem modification * [DS-7193][docs] Modify the bold effect This closes * [DS-7668][docs] Modify the prompt message of MySQL driver version Modify 5.1.47+ to 8.0.16 This closes
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -69,7 +69,7 @@ Go to the zookeeper installation directory, copy configure file `zoo_sample.cfg`\n### Initialize the database\n-DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (5.1.47+) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n+DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (8.0.16) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n```shell\nmysql -uroot -p\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.1/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.1/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -69,7 +69,7 @@ Go to the zookeeper installation directory, copy configure file `zoo_sample.cfg`\n### Initialize the database\n-DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (5.1.47+) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n+DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (8.0.16) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n```shell\nmysql -uroot -p\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -69,7 +69,7 @@ Go to the zookeeper installation directory, copy configure file `zoo_sample.cfg`\n### Initialize the database\n-DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (5.1.47+) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n+DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (8.0.16) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n```shell\nmysql -uroot -p\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Fix-7668][docs] Fix Modify the prompt message of MySQL driver version (#617) * Table shows error problem modification * [DS-7193][docs] Modify the bold effect This closes #7193 * [DS-7668][docs] Modify the prompt message of MySQL driver version Modify 5.1.47+ to 8.0.16 This closes #7668
36,311
09.01.2022 20:49:16
-28,800
592efb1ca5530f45035a888ce789823b472ecbf3
Correct formatter for alert document
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.2/user_doc/guide/alert/enterprise-wechat.md", "new_path": "docs/en-us/2.0.2/user_doc/guide/alert/enterprise-wechat.md", "diff": "@@ -5,7 +5,9 @@ If you need to use Enterprise WeChat to alert, please create an alarm Instance i\n![enterprise-wechat-plugin](/img/alert/enterprise-wechat-plugin.png)\nWhere send type corresponds to app and appchat respectively:\n+\nAPP: https://work.weixin.qq.com/api/doc/90000/90135/90236\n+\nAPPCHAT: https://work.weixin.qq.com/api/doc/90000/90135/90248\nuser.send.msg corresponds to the content in the document. The variable of the corresponding value is {msg}\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-wechat.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-wechat.md", "diff": "@@ -5,7 +5,9 @@ If you need to use Enterprise WeChat to alert, please create an alarm Instance i\n![enterprise-wechat-plugin](/img/alert/enterprise-wechat-plugin.png)\nWhere send type corresponds to app and appchat respectively:\n+\nAPP: https://work.weixin.qq.com/api/doc/90000/90135/90236\n+\nAPPCHAT: https://work.weixin.qq.com/api/doc/90000/90135/90248\nuser.send.msg corresponds to the content in the document. The variable of the corresponding value is {msg}\n\\ No newline at end of file\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Correct formatter for alert document (#628)
36,372
14.01.2022 11:11:39
-28,800
9139f5e2b7fb3d5beac2422b5ac2a38e6e48dcf3
[fix] typo guide's parameter update `${curdate}` to `${biz_curdate}` according to the images both in context.md and local.md
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.2/user_doc/guide/parameter/local.md", "new_path": "docs/en-us/2.0.2/user_doc/guide/parameter/local.md", "diff": "@@ -16,4 +16,4 @@ The approach to set local parameters is, double-click on any node while defining\n<img src=\"/img/global_parameter_en.png\" width=\"80%\" />\n</p>\n-If you want to call the [built-in parameter](built-in.md) in the local parameters, fill in the value corresponding to the built-in parameters in `value`, as in the above figure, `${biz_date}` and `${curdate}`\n+If you want to call the [built-in parameter](built-in.md) in the local parameters, fill in the value corresponding to the built-in parameters in `value`, as in the above figure, `${biz_date}` and `${biz_curdate}`\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[DOC-7944] [fix] typo guide's parameter (#633) update `${curdate}` to `${biz_curdate}` according to the images both in context.md and local.md
36,369
18.01.2022 16:13:19
-28,800
5bd792747f5d149d30f44a59c9f3cfd2b892b9a5
Correct flink doc keyword "Flink"
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/task/flink.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/task/flink.md", "diff": "- Number of taskManage: You can set the number of taskManage\n- JobManager memory number: You can set the jobManager memory number\n- TaskManager memory number: You can set the taskManager memory number\n-- Command line parameters: Set the input parameters of the Spark program and support the substitution of custom parameter variables.\n+- Command line parameters: Set the input parameters of the Flink program and support the substitution of custom parameter variables.\n- Other parameters: support --jars, --files, --archives, --conf format\n- Resource: If the resource file is referenced in other parameters, you need to select and specify in the resource\n- Custom parameter: It is a local user-defined parameter of Flink, which will replace the content with \\${variable} in the script\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.1/user_doc/guide/task/flink.md", "new_path": "docs/en-us/2.0.1/user_doc/guide/task/flink.md", "diff": "- Number of taskManage: You can set the number of taskManage\n- JobManager memory number: You can set the jobManager memory number\n- TaskManager memory number: You can set the taskManager memory number\n-- Command line parameters: Set the input parameters of the Spark program and support the substitution of custom parameter variables.\n+- Command line parameters: Set the input parameters of the Flink program and support the substitution of custom parameter variables.\n- Other parameters: support --jars, --files, --archives, --conf format\n- Resource: If the resource file is referenced in other parameters, you need to select and specify in the resource\n- Custom parameter: It is a local user-defined parameter of Flink, which will replace the content with \\${variable} in the script\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.2/user_doc/guide/task/flink.md", "new_path": "docs/en-us/2.0.2/user_doc/guide/task/flink.md", "diff": "- Number of taskManage: You can set the number of taskManage\n- JobManager memory number: You can set the jobManager memory number\n- TaskManager memory number: You can set the taskManager memory number\n-- Command line parameters: Set the input parameters of the Spark program and support the substitution of custom parameter variables.\n+- Command line parameters: Set the input parameters of the Flink program and support the substitution of custom parameter variables.\n- Other parameters: support --jars, --files, --archives, --conf format\n- Resource: If the resource file is referenced in other parameters, you need to select and specify in the resource\n- Custom parameter: It is a local user-defined parameter of Flink, which will replace the content with \\${variable} in the script\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/flink.md", "new_path": "docs/en-us/dev/user_doc/guide/task/flink.md", "diff": "- Number of taskManage: You can set the number of taskManage\n- JobManager memory number: You can set the jobManager memory number\n- TaskManager memory number: You can set the taskManager memory number\n-- Command line parameters: Set the input parameters of the Spark program and support the substitution of custom parameter variables.\n+- Command line parameters: Set the input parameters of the Flink program and support the substitution of custom parameter variables.\n- Other parameters: support --jars, --files, --archives, --conf format\n- Resource: If the resource file is referenced in other parameters, you need to select and specify in the resource\n- Custom parameter: It is a local user-defined parameter of Flink, which will replace the content with \\${variable} in the script\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Correct flink doc keyword "Flink" (#640)
36,284
19.01.2022 12:53:28
-28,800
1f1cf4c630f7fb525f25ab6fb8ddce2a011f636e
Add new repo for DolphinScheduler
[ { "change_type": "MODIFY", "old_path": "community/en-us/team.md", "new_path": "community/en-us/team.md", "diff": "@@ -58,6 +58,7 @@ DolphinScheduler have hundreds of contributors, you could find them in our repos\n- [DolphinScheduler main repository](https://github.com/apache/dolphinscheduler/graphs/contributors)\n- [DolphinScheduler website](https://github.com/apache/dolphinscheduler-website/graphs/contributors)\n- [DolphinScheduler maven plugin](https://github.com/apache/dolphinscheduler-maven-plugin/graphs/contributors)\n+- [DolphinScheduler ambari](https://github.com/apache/dolphinscheduler-ambari/graphs/contributors)\n## Becoming a Committer\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add new repo for DolphinScheduler (#643)
36,284
19.01.2022 15:27:28
-28,800
aad6b1d1d78fa53c7bd5240b91c9c104cd576fee
Add DSIP for community
[ { "change_type": "ADD", "old_path": null, "new_path": "community/en-us/DSIP.md", "diff": "+# DSIP\n+\n+DolphinScheduler Improvement Proposal(DSIP) introduce major improvements to the Apache DolphinScheduler codebase. It is\n+not for small incremental improvements, and the purpose of DSIP is to notice and inform community the finished or coming\n+big feature for Apache DolphinScheduler.\n+\n+## What is considered as DSIP\n+\n+- Any major new feature, major improvement, introduce or remove components\n+- Any major change of public interfaces, such as API endpoints, web ui huge change\n+\n+When the change in doubt and any committer thinks it should be DSIP, it does.\n+\n+We use GitHub Issue and Apache mail thread to record and hold DSIP, for more detail you could go to section\n+[current DSIPs](#current-dsips) and [past DSIPs](#past-dsips).\n+\n+As a DSIP, it should:\n+\n+- Have a mail thread title started with `[DISCUSS]` in [[email protected]][mail-to-dev]\n+- Have a GitHub Issue labeled with `DSIP`, and including the mail thread link in the description.\n+\n+### Current DSIPs\n+\n+Current DSIPs including all DSIP still work-in-progress, you could see in [current DSIPs][current-DSIPs]\n+\n+### Past DSIPs\n+\n+Past DSIPs including all DSIP already done or retired for some reason, you could see in [past DSIPs][past-DSIPs]\n+\n+## DSIP Process\n+\n+### Create GitHub Issue\n+\n+All DSIP should start with GitHub Issue\n+\n+- If you pretty sure your issue is DSIP, you could click and choose \"DSIP\" in\n+ [GitHub Issue][github-issue-choose]\n+- If you not sure about your issue is DSIP or not, you could click and choose \"Feature request\" in\n+ [GitHub Issue][github-issue-choose]. DolphinScheduler maintainer team would add label `DSIP`, mention you in the\n+ issue and lead you to this document when they think it should be DSIP.\n+\n+You should add special prefix `[DSIP-XXX]`, `XXX` stand for the id DSIP. It's auto increment, and you could find the next\n+integer in [All DSIPs][all-DSIPs] issues.\n+\n+### Send Discuss Mail\n+\n+After issue labeled with \"DSIP\", you should send an email to [[email protected]][mail-to-dev].\n+Describe the purpose, and the draft design about your idea.\n+\n+Here is the template for mail\n+\n+- Title: `[DISCUSS][DSIP-XXX] <CHANGE-TO-YOUR-LOVELY-PROPOSAL-TITLE>`, change `XXX` to special integer you just change in\n+ [GitHub Issue](#create-github-issue), and also change proposal title.\n+- Content:\n+\n+ ```text\n+ Hi community,\n+\n+ <CHANGE-TO-YOUR-PROPOSAL-DETAIL>\n+\n+ I already add a GitHub Issue for my proposal, which you could see in <CHANGE-TO-YOUR-GITHUB-ISSUE-LINK>.\n+\n+ Looking forward any feedback for this thread.\n+ ```\n+\n+After community discuss and all of them think it worth as DSIP, you could [work on it](#work-on-it-or-create-subtask-for-it).\n+But if community think it should not be DSIP or even this change should not be included to DolphinScheduler, maintainers\n+terminate mail thread and remove label \"DSIP\" for GitHub Issue, or even close issue if it should not change.\n+\n+### Work On It, Or Create Subtask For It\n+\n+When your proposal pass in the mail thread, you could make your hand dirty and start the work. You could submit related\n+pull requests in GitHub if change should in one single commit. What's more, if proposal is too huge in single commit, you\n+could create subtasks in GitHub Issue like [DSIP-1][DSIP-1], and separate into multiple commit.\n+\n+### Close After It Done\n+\n+When DSIP is finished and all related PR were merged, you should reply the mail thread you created in\n+[step two](#send-discuss-mail) to notice community the result of the DSIP. After that, this DSIP GitHub Issue would be\n+closed and transfer from [current DSIPs][current-DSIPs] to [past DSIPs][past-DSIPs], but you could still find it in [All DSIPs][all-DSIPs]\n+\n+## An Example For DSIP\n+\n+* [[DSIP-1][Feature][Parent] Add Python API for DolphinScheduler][DSIP-1]: Have multiple subtasks and Projects on it.\n+\n+[all-DSIPs]: https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue+label%3A%22DSIP%22+\n+[current-DSIPs]: https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue+is%3Aopen+label%3A%22DSIP%22\n+[past-DSIPs]: https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue+is%3Aclosed+label%3A%22DSIP%22+\n+[github-issue-choose]: https://github.com/apache/dolphinscheduler/issues/new/choose\n+[mail-to-dev]: mailto:[email protected]\n+[DSIP-1]: https://github.com/apache/dolphinscheduler/issues/6407\n\\ No newline at end of file\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add DSIP for community (#644)
36,339
20.01.2022 17:41:19
-28,800
7da7a0adea82c68bbeddb5774999f705ac27fe22
[develop] Add e2e test doc
[ { "change_type": "ADD", "old_path": null, "new_path": "development/en-us/e2e-test.md", "diff": "+# DolphinScheduler E2E Automation Test\n+\n+## I. Preparatory knowledge\n+\n+### 1. The difference between E2E Test and Unit Test\n+\n+E2E, which stands for \"End to End\", can be translated as \"end-to-end\" testing. It imitates the user, starting from a certain entry point and progressively performing actions until a certain job is completed. And unit tests are different, the latter usually requires testing parameters, types and parameter values, the number of arguments, the return value, throw an error, and so on, the purpose is to ensure that a specific function to finishing the work is stable and reliable in all cases. Unit testing assumes that if all functions work correctly, then the whole product will work.\n+\n+In contrast, E2E test does not emphasize so much the need to cover all usage scenarios, it focuses on whether a complete chain of operations can be completed. For the web front-end, it is also concerned with the layout of the interface and whether the content information meets expectations.\n+\n+For example, E2E test of the login page is concerned with whether the user is able to enter and log in normally, and whether the error message is correctly displayed if the login fails. It is not a major concern whether input that is not legal is processed.\n+\n+### 2. Selenium test framework\n+\n+[Selenium]((https://www.selenium.dev/)) is an open source testing tool for executing automated tests on a web browser. The framework uses WebDriver to transform Web Service commands into browser native calls through the browser's native components to complete operations. In simple words, it simulates the browser and makes selection operations on the elements of the page.\n+\n+A WebDriver is an API and protocol which defines a language-neutral interface for controlling the behavior of a web browser. Every browser has a specific WebDriver implementation, called a driver. The driver is the component responsible for delegating to the browser and handling the communication with Selenium and the browser.\n+\n+The Selenium framework links all these components together through a user-facing interface that allows transparent work with different browser backends, enabling cross-browser and cross-platform automation.\n+\n+## II. E2E Test\n+\n+### 1. E2E-Pages\n+\n+DolphinScheduler's E2E tests are deployed using docker-compose. The current tests are in standalone mode and are mainly used to check some basic functions such as \"add, delete, change and check\". For further cluster validation, such as collaboration between services or communication mechanisms between services, refer to `deploy/docker/docker-compose.yml` for configuration.\n+\n+For E2E test (the front-end part), the [page model](https://www.selenium.dev/documentation/guidelines/page_object_models/) form is used, mainly to create a corresponding model for each page. The following is an example of a login page.\n+\n+```java\n+package org.apache.dolphinscheduler.e2e.pages;\n+\n+import org.apache.dolphinscheduler.e2e.pages.common.NavBarPage;\n+import org.apache.dolphinscheduler.e2e.pages.security.TenantPage;\n+\n+import org.openqa.selenium.WebElement;\n+import org.openqa.selenium.remote.RemoteWebDriver;\n+import org.openqa.selenium.support.FindBy;\n+import org.openqa.selenium.support.ui.ExpectedConditions;\n+import org.openqa.selenium.support.ui.WebDriverWait;\n+\n+import lombok.Getter;\n+import lombok.SneakyThrows;\n+\n+@Getter\n+public final class LoginPage extends NavBarPage {\n+ @FindBy(id = \"inputUsername\")\n+ private WebElement inputUsername;\n+\n+ @FindBy(id = \"inputPassword\")\n+ private WebElement inputPassword;\n+\n+ @FindBy(id = \"btnLogin\")\n+ private WebElement buttonLogin;\n+\n+ public LoginPage(RemoteWebDriver driver) {\n+ super(driver);\n+ }\n+\n+ @SneakyThrows\n+ public TenantPage login(String username, String password) {\n+ inputUsername().sendKeys(username);\n+ inputPassword().sendKeys(password);\n+ buttonLogin().click();\n+\n+ new WebDriverWait(driver, 10)\n+ .until(ExpectedConditions.urlContains(\"/#/security\"));\n+\n+ return new TenantPage(driver);\n+ }\n+}\n+```\n+\n+During the test process, we only test the elements we need to focus on, not all elements of the page. So on the login page only the username, password and login button elements are declared. The FindBy interface is provided by the Selenium test framework to find the corresponding id or class in a Vue file.\n+\n+In addition, during the testing process, the elements are not manipulated directly. The general choice is to package the corresponding methods to achieve the effect of reuse. For example, if you want to log in, you input your username and password through the `public TenantPage login()` method to manipulate the elements you pass in to achieve the effect of logging in. That is, when the user finishes logging in, he or she jumps to the Security Centre (which goes to the Tenant Management page by default).\n+\n+The goToTab method is provided in SecurityPage to test the corresponding sidebar jumps, which include TenantPage, UserPage and WorkerGroupPge and QueuePage. These pages are implemented in the same way, to test that the form's input, add and delete buttons return the corresponding pages.\n+\n+```java\n+ public <T extends SecurityPage.Tab> T goToTab(Class<T> tab) {\n+ if (tab == TenantPage.class) {\n+ WebElement menuTenantManageElement = new WebDriverWait(driver, 60)\n+ .until(ExpectedConditions.elementToBeClickable(menuTenantManage));\n+ ((JavascriptExecutor)driver).executeScript(\"arguments[0].click();\", menuTenantManageElement);\n+ return tab.cast(new TenantPage(driver));\n+ }\n+ if (tab == UserPage.class) {\n+ WebElement menUserManageElement = new WebDriverWait(driver, 60)\n+ .until(ExpectedConditions.elementToBeClickable(menUserManage));\n+ ((JavascriptExecutor)driver).executeScript(\"arguments[0].click();\", menUserManageElement);\n+ return tab.cast(new UserPage(driver));\n+ }\n+ if (tab == WorkerGroupPage.class) {\n+ WebElement menWorkerGroupManageElement = new WebDriverWait(driver, 60)\n+ .until(ExpectedConditions.elementToBeClickable(menWorkerGroupManage));\n+ ((JavascriptExecutor)driver).executeScript(\"arguments[0].click();\", menWorkerGroupManageElement);\n+ return tab.cast(new WorkerGroupPage(driver));\n+ }\n+ if (tab == QueuePage.class) {\n+ menuQueueManage().click();\n+ return tab.cast(new QueuePage(driver));\n+ }\n+ throw new UnsupportedOperationException(\"Unknown tab: \" + tab.getName());\n+ }\n+```\n+\n+![SecurityPage](../../img/e2e-test/SecurityPage.png)\n+\n+For navigation bar options jumping, the goToNav method is provided in `org/apache/dolphinscheduler/e2e/pages/common/NavBarPage.java`. The currently supported pages are: ProjectPage, SecurityPage and ResourcePage.\n+\n+```java\n+ public <T extends NavBarItem> T goToNav(Class<T> nav) {\n+ if (nav == ProjectPage.class) {\n+ WebElement projectTabElement = new WebDriverWait(driver, 60)\n+ .until(ExpectedConditions.elementToBeClickable(projectTab));\n+ ((JavascriptExecutor)driver).executeScript(\"arguments[0].click();\", projectTabElement);\n+ return nav.cast(new ProjectPage(driver));\n+ }\n+\n+ if (nav == SecurityPage.class) {\n+ WebElement securityTabElement = new WebDriverWait(driver, 60)\n+ .until(ExpectedConditions.elementToBeClickable(securityTab));\n+ ((JavascriptExecutor)driver).executeScript(\"arguments[0].click();\", securityTabElement);\n+ return nav.cast(new SecurityPage(driver));\n+ }\n+\n+ if (nav == ResourcePage.class) {\n+ WebElement resourceTabElement = new WebDriverWait(driver, 60)\n+ .until(ExpectedConditions.elementToBeClickable(resourceTab));\n+ ((JavascriptExecutor)driver).executeScript(\"arguments[0].click();\", resourceTabElement);\n+ return nav.cast(new ResourcePage(driver));\n+ }\n+\n+ throw new UnsupportedOperationException(\"Unknown nav bar\");\n+ }\n+```\n+\n+### E2E-Cases\n+\n+Current E2E test cases supported include: File Management, Project Management, Queue Management, Tenant Management, User Management, Worker Group Management and Workflow Test.\n+\n+![E2E_Cases](../../img/e2e-test/E2E_Cases.png)\n+\n+The following is an example of a tenant management test. As explained earlier, we use docker-compose for deployment, so for each test case, we need to import the corresponding file in the form of an annotation.\n+\n+The browser is loaded using the RemoteWebDriver provided with Selenium. Before each test case is started there is some preparation work that needs to be done. For example: logging in the user, jumping to the corresponding page (depending on the specific test case).\n+\n+```java\n+ @BeforeAll\n+ public static void setup() {\n+ new LoginPage(browser)\n+ .login(\"admin\", \"dolphinscheduler123\")\n+ .goToNav(SecurityPage.class)\n+ .goToTab(TenantPage.class)\n+ ;\n+ }\n+```\n+\n+When the preparation is complete, it is time for the formal test case writing. We use a form of @Order() annotation for modularity, to confirm the order of the tests. After the tests have been run, assertions are used to determine if the tests were successful, and if the assertion returns true, the tenant creation was successful. The following code can be used as a reference:\n+\n+```java\n+ @Test\n+ @Order(10)\n+ void testCreateTenant() {\n+ final TenantPage page = new TenantPage(browser);\n+ page.create(tenant);\n+\n+ await().untilAsserted(() -> assertThat(page.tenantList())\n+ .as(\"Tenant list should contain newly-created tenant\")\n+ .extracting(WebElement::getText)\n+ .anyMatch(it -> it.contains(tenant)));\n+ }\n+```\n+\n+The rest are similar cases and can be understood by referring to the specific source code.\n+\n+https://github.com/apache/dolphinscheduler/tree/dev/dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases\n+\n+## III. Supplements\n+\n+When running E2E tests locally, the `-Dlocal=true` parameter can be configured to connect locally and facilitate changes to the UI.\n+\n+![Dlocal](../../img/e2e-test/Dlocal.png)\n+\n+If a connection timeout occurs during a local run, increase the load time to a recommended 30 and above.\n+\n+![timeout](../../img/e2e-test/timeout.png)\n+\n+The test run will be available as an MP4 file.\n+\n+![MP4](../../img/e2e-test/MP4.png)\n" }, { "change_type": "ADD", "old_path": "img/e2e-test/Dlocal.png", "new_path": "img/e2e-test/Dlocal.png", "diff": "Binary files /dev/null and b/img/e2e-test/Dlocal.png differ\n" }, { "change_type": "ADD", "old_path": "img/e2e-test/E2E_Cases.png", "new_path": "img/e2e-test/E2E_Cases.png", "diff": "Binary files /dev/null and b/img/e2e-test/E2E_Cases.png differ\n" }, { "change_type": "ADD", "old_path": "img/e2e-test/MP4.png", "new_path": "img/e2e-test/MP4.png", "diff": "Binary files /dev/null and b/img/e2e-test/MP4.png differ\n" }, { "change_type": "ADD", "old_path": "img/e2e-test/SecurityPage.png", "new_path": "img/e2e-test/SecurityPage.png", "diff": "Binary files /dev/null and b/img/e2e-test/SecurityPage.png differ\n" }, { "change_type": "ADD", "old_path": "img/e2e-test/timeout.png", "new_path": "img/e2e-test/timeout.png", "diff": "Binary files /dev/null and b/img/e2e-test/timeout.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[develop] Add e2e test doc (#647)
36,284
20.01.2022 18:12:10
-28,800
1004927d44bb138448771a0e3e0bdf0fb5114e0f
[community] Add how to review issue or PR
[ { "change_type": "ADD", "old_path": null, "new_path": "community/en-us/join/review.md", "diff": "+# Community Review\n+\n+Beside submit Issues and pull requests to the GitHub repository mentioned in [team](../team.md), another important way to\n+contribute to DolphinScheduler is reviewing GitHub Issues or Pull Requests. You can not only know the latest new and\n+direction of the community, but also understand the good design in others during you reviewing. At the same time, you can\n+increase your exposure in the community and accumulate your honor.\n+\n+Anyone is encouraged to review Issues and Pull Requests. We also raise a Help Wanted email discussion to solicit contributors\n+from the community to review them. You could see detail in [mail][mail-review-wanted], we put the results of mail thread\n+in [GitHub Discussion][discussion-result-review-wanted].\n+\n+> Note: It is only users mentioned in the [GitHub Discussion][discussion-result-review-wanted] can review Issues or Pull\n+> Requests, Community advocates **Anyone is encouraged to review Issues and Pull Requests**. Users in\n+> [GitHub Discussion][discussion-result-review-wanted] show their willing to review when we collect in the mail thread.\n+> The advantage of this list is when the community has discussion, in addition to the mention Members in [team](../team.md),\n+> you can also find some help in [GitHub Discussion][discussion-result-review-wanted] people. If you want to join the\n+> [GitHub Discussion][discussion-result-review-wanted], please comment in that discussion and leave a module you are interested\n+> in, and the maintainer will add you to the list.\n+\n+## How Reviewing\n+\n+DolphinScheduler receives community contributions through GitHub, and all its Issues and Pull Requests are hosted in GitHub.\n+If you want to join community by reviewing, please go to section [review Issues](#issues), if you prefer Pull Requests please\n+go to section [review Pull Requests](#pull-requests).\n+\n+### Issues\n+\n+Review Issues means discuss [Issues][all-issues] in GitHub and give suggestions on it. Include but are not limited to the following situations\n+\n+| Situation | Reason | Label | Action |\n+| ------ | ------ | ------ | ------ |\n+| wont fix | Has been fixed in dev branch | [wontfix][label-wontfix] | Close Issue, inform creator the fixed version if it already release |\n+| duplicate issue | Had the same problem before | [duplicate][label-duplicate] | Close issue, inform creator the link of same issue |\n+| Description not clearly | Without detail reproduce step | [need more information][label-need-more-information] | Inform creator add more description |\n+\n+In addition give suggestion, add label for issue is also important during review. The labeled issues can be retrieved\n+better, which convenient for further processing. An issue can with more than one label. Common issue categories are:\n+\n+| Label | Meaning |\n+| ------ | ------ |\n+| [UI][label-UI] | UI and front-end related |\n+| [security][label-security] | Security Issue |\n+| [user experience][label-user-experience] | User experience Issue |\n+| [development][label-development] | Development Issue |\n+| [Python][label-Python] | Python Issue |\n+| [plug-in][label-plug-in] | Plug-in Issue |\n+| [document][label-document] | Document Issue |\n+| [docker][label-docker] | Docker Issue |\n+| [need verify][label-need-verify] | Need verify Issue |\n+| [e2e][label-e2e] | E2E Issue |\n+| [win-os][label-win-os] | windows operating system Issue |\n+| [suggestion][label-suggestion] | Give suggestion to us |\n+\n+Beside classification, label could also set the priority of Issues. The higher the priority, the more attention pay\n+in the community, the easier it is to be fixed or implemented. The priority label are as follows\n+\n+| Label | priority |\n+| ------ | ------ |\n+| [priority:high][label-priority-high] | High priority |\n+| [priority:middle][label-priority-middle] | Middle priority |\n+| [priority:low][label-priority-low] | Low priority |\n+\n+All the labels above in common label. For all labels in this project you could see in [full label list][label-all-list]\n+\n+Before reading following content, please make sure you have labeled the Issue.\n+\n+* Remove label [Waiting for reply][label-waiting-for-reply] after replying: Label [Waiting for reply][label-waiting-for-reply]\n+ added when [creating an Issue][issue-choose]. It makes positioning un reply issue more convenient, and you should remove\n+ this label after you reviewed it. If you do not remove it, will cause others to waste time looking on the same issue.\n+* Mark [Waiting for review][label-waiting-for-review] when not sure whether issue is resolved or not: There are two situations\n+ when you review issue. One is the problem has been located or resolved, maybe have to [Create PR](../development/submit-code.md)\n+ when necessary. Secondly, you are not sure about this issue, you can labeled [Waiting for review][label-waiting-for-review]\n+ and mention others to make a second confirmation.\n+\n+When an Issue need to create Pull Requests, you could also labeled it from below.\n+\n+| Label | Mean |\n+| ------ | ------ |\n+| [Chore][label-Chore] | Chore for project |\n+| [Good first issue][label-good-first-issue] | Good first issue for new contributor |\n+| [easy to fix][label-easy-to-fix] | Easy to fix, harder than `Good first issue` |\n+| [help wanted][label-help-wanted] | Help wanted |\n+\n+> Note: Only members have permission to add or delete label. When you need to add or remove lebals but are not member,\n+> you can `@` members to do that. But as long as you have a GitHub account, you can comment on issues and give suggestions.\n+> We encourage everyone in the community to comment and answer issues\n+\n+### Pull Requests\n+\n+Review Pull mean discussing in [Pull Requests][all-PRs] in GitHub and giving suggestions to it. DolphinScheduler's\n+Pull Requests reviewing are the same as [GitHub's reviewing changes in pull requests][gh-review-pr]. You can give your\n+suggestions in Pull Requests\n+\n+* When you think the Pull Request is OK to be merged, you can agree to the Pull Request according to the \"Approve\" process\n+ in [GitHub's reviewing changes in pull requests][gh-review-pr].\n+* When you think Pull Request needs to be changed, you can comment it according to the \"Comment\" process in\n+ [GitHub's reviewing changes in pull requests][gh-review-pr]. And when you think issues that must be fixed before they\n+ merged, please follow \"Request changes\" in [GitHub's reviewing changes in pull requests][gh-review-pr] to ask contributors\n+ modify it.\n+\n+Labeled Pull Requests is an important part. Reasonable classification can save a lot of time for reviewers. The good news\n+is that the label's name and usage of Pull Requests are the same in [Issues](#issues), which can reduce the memory. For\n+example, if there is a Pull Request is related to docker and block deployment. We can label it with [docker][label-docker]\n+and [priority:high][label-priority-high].\n+\n+Pull Requests have some unique labels of it own\n+\n+| Label | Mean |\n+| ------ | ------ |\n+| [miss document][label-miss-document] | Pull Requests miss document, and should be add |\n+| [first time contributor][label-first-time-contributor] | Pull Requests submit by first time contributor |\n+| [don't merge][label-do-not-merge] | Pull Requests have some problem and should not be merged |\n+\n+> Note: Only members have permission to add or delete label. When you need to add or remove lebals but are not member,\n+> you can `@` members to do that. But as long as you have a GitHub account, you can comment on Pull Requests and give suggestions.\n+> We encourage everyone in the community to review Pull Requests\n+\n+[mail-review-wanted]: https://lists.apache.org/thread/9flwlzrp69xjn6v8tdkbytq8glqp2k51\n+[discussion-result-review-wanted]: https://github.com/apache/dolphinscheduler/discussions/7545\n+[label-wontfix]: https://github.com/apache/dolphinscheduler/labels/wontfix\n+[label-duplicate]: https://github.com/apache/dolphinscheduler/labels/duplicate\n+[label-need-more-information]: https://github.com/apache/dolphinscheduler/labels/need%20more%20information\n+[label-win-os]: https://github.com/apache/dolphinscheduler/labels/win-os\n+[label-waiting-for-reply]: https://github.com/apache/dolphinscheduler/labels/Waiting%20for%20reply\n+[label-waiting-for-review]: https://github.com/apache/dolphinscheduler/labels/Waiting%20for%20review\n+[label-user-experience]: https://github.com/apache/dolphinscheduler/labels/user%20experience\n+[label-development]: https://github.com/apache/dolphinscheduler/labels/development\n+[label-UI]: https://github.com/apache/dolphinscheduler/labels/UI\n+[label-suggestion]: https://github.com/apache/dolphinscheduler/labels/suggestion\n+[label-security]: https://github.com/apache/dolphinscheduler/labels/security\n+[label-Python]: https://github.com/apache/dolphinscheduler/labels/Python\n+[label-plug-in]: https://github.com/apache/dolphinscheduler/labels/plug-in\n+[label-document]: https://github.com/apache/dolphinscheduler/labels/document\n+[label-docker]: https://github.com/apache/dolphinscheduler/labels/docker\n+[label-all-list]: https://github.com/apache/dolphinscheduler/labels\n+[label-Chore]: https://github.com/apache/dolphinscheduler/labels/Chore\n+[label-good-first-issue]: https://github.com/apache/dolphinscheduler/labels/good%20first%20issue\n+[label-help-wanted]: https://github.com/apache/dolphinscheduler/labels/help%20wanted\n+[label-easy-to-fix]: https://github.com/apache/dolphinscheduler/labels/easy%20to%20fix\n+[label-priority-high]: https://github.com/apache/dolphinscheduler/labels/priority%3Ahigh\n+[label-priority-middle]: https://github.com/apache/dolphinscheduler/labels/priority%3Amiddle\n+[label-priority-low]: https://github.com/apache/dolphinscheduler/labels/priority%3Alow\n+[label-miss-document]: https://github.com/apache/dolphinscheduler/labels/miss%20document\n+[label-first-time-contributor]: https://github.com/apache/dolphinscheduler/labels/first%20time%20contributor\n+[label-do-not-merge]: https://github.com/apache/dolphinscheduler/labels/don%27t%20merge\n+[label-e2e]: https://github.com/apache/dolphinscheduler/labels/e2e\n+[label-need-verify]: https://github.com/apache/dolphinscheduler/labels/need%20to%20verify\n+[issue-choose]: https://github.com/apache/dolphinscheduler/issues/new/choose\n+[all-issues]: https://github.com/apache/dolphinscheduler/issues\n+[all-PRs]: https://github.com/apache/dolphinscheduler/pulls\n+[gh-review-pr]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews\n" }, { "change_type": "MODIFY", "old_path": "community/en-us/team.md", "new_path": "community/en-us/team.md", "diff": "@@ -4,52 +4,49 @@ The DolphinScheduler team is comprised of Members and Contributors. Members have\n## Members\n-### PMC\n-\n| Public Name | Apache ID | GitHub ID |\n-|-------------------| ------------ | -------------- |\n-| Furkan Kamaci | kamaci | kamaci |\n-| Gang Li | lgcareer | lgcareer |\n-| Guo Jiwei | technoboy | Technoboy- |\n-| Guo William | guowei | William-GuoWei |\n-| Jun Gao | gaojun2048 | gaojun2048 |\n-| Kevin Ratnasekera | djkevincr | djkevincr |\n-| Leon Bao | leonbao | lenboo,leonbao |\n-| Liang Chen | chenliang613 | chenliang613 |\n-| Lidong Dai | lidongdai | dailidong |\n-| Qiao Zhanwei | journey | qiaozhanwei |\n-| Shao Feng Shi | shaofengshi | shaofengshi |\n-| Sheng Wu | wusheng | wu-sheng |\n-| Wu Baoqi | baoqiwu | Baoqi |\n-| Xiaochun Liu | liuxiaochun | khadgarmage |\n-| ZijJian Gong | millionfor | millionfor |\n-| Calvin Kirs | kirs | CalvinKirs |\n-\n+|-------------------| ------------ | ---------------------------------------------------- |\n+| Furkan Kamaci | kamaci | [@kamaci](https://github.com/kamaci) |\n+| Gang Li | lgcareer | [@lgcareer](https://github.com/lgcareer) |\n+| Guo Jiwei | technoboy | [@Technoboy-](https://github.com/Technoboy-) |\n+| Guo William | guowei | [@William-GuoWei](https://github.com/William-GuoWei) |\n+| Jun Gao | gaojun2048 | [@gaojun2048](https://github.com/gaojun2048) |\n+| Kevin Ratnasekera | djkevincr | [@djkevincr](https://github.com/djkevincr) |\n+| Leon Bao | leonbao | [@lenboo](https://github.com/lenboo) |\n+| Liang Chen | chenliang613 | [@chenliang613](https://github.com/chenliang613) |\n+| Lidong Dai | lidongdai | [@dailidong](https://github.com/dailidong) |\n+| Qiao Zhanwei | journey | [@qiaozhanwei](https://github.com/qiaozhanwei) |\n+| Shao Feng Shi | shaofengshi | [@shaofengshi](https://github.com/shaofengshi) |\n+| Sheng Wu | wusheng | [@wu-sheng](https://github.com/wu-sheng) |\n+| Wu Baoqi | baoqiwu | [@Baoqi](https://github.com/Baoqi) |\n+| Xiaochun Liu | liuxiaochun | [@khadgarmage](https://github.com/khadgarmage) |\n+| ZijJian Gong | millionfor | [@millionfor](https://github.com/millionfor) |\n+| Calvin Kirs | kirs | [@CalvinKirs](https://github.com/CalvinKirs) |\n### Committer\n| Public Name | Apache ID | GitHub ID |\n-|---------------|--------------|-------------------|\n-| BoYi Zhang | zhangboyi | BoYiZhang |\n-| Caibiao Xiang | break60 | break60 |\n-| Chong Zhuang | kerwin | zhuangchong |\n-| Cong Huang | chongchongzi | chongchongzi |\n-| Hemin Wen | wenhemin | wen-hemin |\n-| Kai Zhu | zhukai | nauu |\n-| Kejia Chen | jave | Jave-Chen |\n-| Li Huang | eights | Eights-Li |\n-| Lin Li | lilin | samz406 |\n-| Shang Lou | clay4megtr | clay4444 |\n-| Shaojie Wu | gabrywu | gabrywu |\n-| Shiwen Cheng | chengshiwen | chengshiwen |\n-| Wenhe Li | liwenhe | liwenhe1993 |\n-| Xingchun Chen | chenxingchun | xingchun-chen |\n-| Yichao Yang | yangyichao | yangyichao-mango |\n-| Zongyao Zhang | lfyee | lfyee |\n-| Zhenxu Ke | kezhenxu94 | kezhenxu94 |\n-| Jiajie Zhong | zhongjiajie | zhongjiajie |\n-| Yizhi Wang | wangyizhi | Wangyizhi1 |\n-| ShunFeng Cai | caishunfeng | caishunfeng |\n+| ------------- | ------------ | -------------------------------------------------------- |\n+| BoYi Zhang | zhangboyi | [@BoYiZhang](https://github.com/BoYiZhang) |\n+| Caibiao Xiang | break60 | [@break60](https://github.com/break60) |\n+| Chong Zhuang | kerwin | [@zhuangchong](https://github.com/zhuangchong) |\n+| Cong Huang | chongchongzi | [@chongchongzi](https://github.com/chongchongzi) |\n+| Hemin Wen | wenhemin | [@wen-hemin](https://github.com/wen-hemin) |\n+| Kai Zhu | zhukai | [@nauu](https://github.com/nauu) |\n+| Kejia Chen | jave | [@Jave-Chen](https://github.com/Jave-Chen) |\n+| Li Huang | eights | [@Eights-Li](https://github.com/Eights-Li) |\n+| Lin Li | lilin | [@samz406](https://github.com/samz406) |\n+| Shang Lou | clay4megtr | [@clay4444](https://github.com/clay4444) |\n+| Shaojie Wu | gabrywu | [@gabrywu](https://github.com/gabrywu) |\n+| Shiwen Cheng | chengshiwen | [@chengshiwen](https://github.com/chengshiwen) |\n+| Wenhe Li | liwenhe | [@liwenhe1993](https://github.com/liwenhe1993) |\n+| Xingchun Chen | chenxingchun | [@xingchun-chen](https://github.com/xingchun-chen) |\n+| Yichao Yang | yangyichao | [@yangyichao-mango](https://github.com/yangyichao-mango) |\n+| Zongyao Zhang | lfyee | [@lfyee](https://github.com/lfyee) |\n+| Zhenxu Ke | kezhenxu94 | [@kezhenxu94](https://github.com/kezhenxu94) |\n+| Jiajie Zhong | zhongjiajie | [@zhongjiajie](https://github.com/zhongjiajie) |\n+| Yizhi Wang | wangyizhi | [@Wangyizhi1](https://github.com/Wangyizhi1) |\n+| ShunFeng Cai | caishunfeng | [@caishunfeng](https://github.com/caishunfeng) |\n## Contributors\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[community] Add how to review issue or PR (#648)
36,327
25.01.2022 17:12:42
-28,800
ca2ec03b2e40e2e38ba8d84050ab25188b691aa8
[plugin] Add DingTalk alert plugin documentation
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/en-us/dev/user_doc/guide/alert/dingtalk.md", "diff": "+# DingTalk\n+\n+If you need to use DingTalk for alerting, please create an alert instance in the alert instance management and select the DingTalk plugin. The configuration example of DingTalk is as follows:\n+\n+![dingtalk-plugin](/img/alert/dingtalk-plugin.png)\n+\n+parameter configuration\n+\n+* Webhook\n+ > The format is as follows: https://oapi.dingtalk.com/robot/send?access_token=XXXXXX\n+* Keyword\n+ > Custom keywords for security settings\n+* Secret\n+ > Signature of security settings\n+\n+When a custom bot sends a message, you can specify the \"@person list\" by your mobile phone number. When the people in the \"@people list\" receive the message, there will be a @ message reminder. Do not disturb conversations still notify reminders, and \"someone @ you\" appears on the fold\n+* @Mobiles\n+ > The mobile phone number of the \"@person\"\n+* @UserIds\n+ > The userid by \"@person\"\n+* @All\n+ > Is @Everyone\n+\n+[DingTalk Custom Robot Access Development Documentation](https://open.dingtalk.com/document/robots/custom-robot-access),\n+Use message type as text\n\\ No newline at end of file\n" }, { "change_type": "ADD", "old_path": "img/alert/dingtalk-plugin.png", "new_path": "img/alert/dingtalk-plugin.png", "diff": "Binary files /dev/null and b/img/alert/dingtalk-plugin.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[plugin] Add DingTalk alert plugin documentation (#650)
36,272
26.01.2022 09:41:38
-28,800
e1bd392304930c867a1fc9144d4e80445541f6a5
[feat] Add doc of taskgoup
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/resource.md", "new_path": "docs/en-us/dev/user_doc/guide/resource.md", "diff": "@@ -110,3 +110,72 @@ conf/common/hadoop.properties\n<p align=\"center\">\n<img src=\"/img/udf_edit_en.png\" width=\"80%\" />\n</p>\n+\n+ ## Task group settings\n+\n+The task group is mainly used to control the concurrency of task instances, and is designed to control the pressure of other resources (it can also control the pressure of the Hadoop cluster, the cluster will have queue control it). When creating a new task definition, you can configure the corresponding task group and configure the priority of the task running in the task group.\n+\n+### Task group configuration\n+\n+#### Create task group\n+\n+<p align=\"center\">\n+ <img src=\"/img/task_group_manage_eng.png\" width=\"80%\" />\n+</p>\n+\n+The user clicks [Resources] - [Task Group Management] - [Task Group option] - create task Group\n+\n+<p align=\"center\">\n+<img src=\"/img/task_group_create_eng.png\" width=\"80%\" />\n+</p>\n+\n+You need to enter the information in the picture:\n+\n+[Task group name]: The name displayed when the task group is used\n+\n+[Project name]: The project that the task group functions, this item is optional, if not selected, all the projects in the whole system can use this task group.\n+\n+[Resource pool size]: The maximum number of concurrent task instances allowed\n+\n+#### View task group queue\n+\n+<p align=\"center\">\n+ <img src=\"/img/task_group_conf_eng.png\" width=\"80%\" />\n+</p>\n+\n+Click the button to view task group usage information\n+\n+<p align=\"center\">\n+ <img src=\"/img/task_group_queue_list_eng.png\" width=\"80%\" />\n+</p>\n+\n+#### Use of task groups\n+\n+Note: The use of task groups is applicable to tasks executed by workers, such as [switch] nodes, [condition] nodes, [sub_process] and other node types executed by the master are not controlled by the task group. Let's take the shell node as an example:\n+\n+<p align=\"center\">\n+ <img src=\"/img/task_group_use_eng.png\" width=\"80%\" />\n+</p>\n+\n+\n+Regarding the configuration of the task group, all you need to do is to configure the part in the red box:\n+\n+[Task group name] : The task group name displayed on the task group configuration page. Here you can only see the task group that the project has permission to (the project is selected when creating a task group), or the task group that acts globally (the new task group is created). when no item is selected)\n+\n+[Priority] : When there is a waiting resource, the task with high priority will be distributed to the worker by the master first. The larger the value of this part, the higher the priority.\n+\n+### Implementation logic of task group\n+\n+#### Get task group resources:\n+\n+The master judges whether the task is configured with a task group when distributing the task. If the task is not configured, it is normally thrown to the worker to run; if a task group is configured, it checks whether the remaining size of the task group resource pool meets the current task operation before throwing it to the worker for execution. , if the resource pool -1 is satisfied, continue to run; if not, exit the task distribution and wait for other tasks to wake up.\n+\n+#### Release and wake up:\n+\n+When the task that has obtained the task group resource ends, the task group resource will be released. After the release, it will check whether there is a task waiting in the current task group. If there is, mark the task with the best priority to run, and create a new executable event. . The event stores the task id that is marked to obtain the resource, and then obtains the task group resource and then runs it.\n+\n+#### Task Group Flowchart\n+\n+<p align=\"center\">\n+ <img src=\"/img/task_group_process.png\" width=\"80%\" />\n+</p>\n" }, { "change_type": "ADD", "old_path": "img/task_group_conf.png", "new_path": "img/task_group_conf.png", "diff": "Binary files /dev/null and b/img/task_group_conf.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_conf_eng.png", "new_path": "img/task_group_conf_eng.png", "diff": "Binary files /dev/null and b/img/task_group_conf_eng.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_create.png", "new_path": "img/task_group_create.png", "diff": "Binary files /dev/null and b/img/task_group_create.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_create_eng.png", "new_path": "img/task_group_create_eng.png", "diff": "Binary files /dev/null and b/img/task_group_create_eng.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_manage.png", "new_path": "img/task_group_manage.png", "diff": "Binary files /dev/null and b/img/task_group_manage.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_manage_eng.png", "new_path": "img/task_group_manage_eng.png", "diff": "Binary files /dev/null and b/img/task_group_manage_eng.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_process.png", "new_path": "img/task_group_process.png", "diff": "Binary files /dev/null and b/img/task_group_process.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_queue_list.png", "new_path": "img/task_group_queue_list.png", "diff": "Binary files /dev/null and b/img/task_group_queue_list.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_queue_list_eng.png", "new_path": "img/task_group_queue_list_eng.png", "diff": "Binary files /dev/null and b/img/task_group_queue_list_eng.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_use.png", "new_path": "img/task_group_use.png", "diff": "Binary files /dev/null and b/img/task_group_use.png differ\n" }, { "change_type": "ADD", "old_path": "img/task_group_use_eng.png", "new_path": "img/task_group_use_eng.png", "diff": "Binary files /dev/null and b/img/task_group_use_eng.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[feat] Add doc of taskgoup (#653)
36,280
26.01.2022 09:45:01
-28,800
7c14702a4a663b2e2a73f4d2ffa6928453998fe4
[install] Fix unfriendly and errors in the 2.x deployment documents
[ { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.0/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.0/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -36,7 +36,7 @@ sed -i '$adolphinscheduler ALL=(ALL) NOPASSWD: NOPASSWD: ALL' /etc/sudoers\nsed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers\n# Modify directory permissions and grant permissions for user you created above\n-chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin\n+chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin\n```\n> **_NOTICE:_**\n@@ -85,7 +85,7 @@ mysql> flush privileges;\nRun the latest schema file manually in `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_*.sql` to initialization you database. If you use MySQL, please run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql`, for PostgreSQL run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgre.sql`\n-> **_NOTICE:_** In the latest version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken, We have created a [issue-6597][issue] to track and fix this problem\n+> **_NOTICE:_** In the 2.0.0 version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken, We have created a [issue-6597][issue] to track and fix this problem\n<!--\nModify the database configuration and initialize\n@@ -152,7 +152,7 @@ registryServers=\"localhost:2181\"\n## Start DolphinScheduler\n-Use deployment user you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n+Use **deployment user** you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n```shell\nsh install.sh\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.1/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.1/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -36,7 +36,7 @@ sed -i '$adolphinscheduler ALL=(ALL) NOPASSWD: NOPASSWD: ALL' /etc/sudoers\nsed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers\n# Modify directory permissions and grant permissions for user you created above\n-chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin\n+chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin\n```\n> **_NOTICE:_**\n@@ -85,7 +85,7 @@ mysql> flush privileges;\nRun the latest schema file manually in `sql/sql/dolphinscheduler_*.sql` to initialization you database. If you use MySQL, please run `sql/sql/dolphinscheduler_mysql.sql`, for PostgreSQL run `sql /sql/dolphinscheduler_postgre.sql`\n-> **_NOTICE:_** In the latest version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken\n+> **_NOTICE:_** In the 2.0.1 version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken, We have created a [issue-6597][issue] to track and fix this problem\n<!--\nModify the database configuration and initialize\n@@ -152,7 +152,7 @@ registryServers=\"localhost:2181\"\n## Start DolphinScheduler\n-Use deployment user you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n+Use **deployment user** you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n```shell\nsh install.sh\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.2/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.2/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -36,7 +36,7 @@ sed -i '$adolphinscheduler ALL=(ALL) NOPASSWD: NOPASSWD: ALL' /etc/sudoers\nsed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers\n# Modify directory permissions and grant permissions for user you created above\n-chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin\n+chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin\n```\n> **_NOTICE:_**\n@@ -137,7 +137,7 @@ sh script/create-dolphinscheduler.sh\n## Start DolphinScheduler\n-Use deployment user you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n+Use **deployment user** you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n```shell\nsh install.sh\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/2.0.3/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/2.0.3/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -36,7 +36,7 @@ sed -i '$adolphinscheduler ALL=(ALL) NOPASSWD: NOPASSWD: ALL' /etc/sudoers\nsed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers\n# Modify directory permissions and grant permissions for user you created above\n-chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin\n+chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin\n```\n> **_NOTICE:_**\n@@ -137,7 +137,7 @@ sh script/create-dolphinscheduler.sh\n## Start DolphinScheduler\n-Use deployment user you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n+Use **deployment user** you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n```shell\nsh install.sh\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md", "new_path": "docs/en-us/dev/user_doc/guide/installation/pseudo-cluster.md", "diff": "@@ -36,7 +36,7 @@ sed -i '$adolphinscheduler ALL=(ALL) NOPASSWD: NOPASSWD: ALL' /etc/sudoers\nsed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers\n# Modify directory permissions and grant permissions for user you created above\n-chown -R dolphinscheduler:dolphinscheduler dolphinscheduler-bin\n+chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin\n```\n> **_NOTICE:_**\n@@ -67,26 +67,6 @@ Go to the zookeeper installation directory, copy configure file `zoo_sample.cfg`\n./bin/zkServer.sh start\n```\n-### Initialize the database\n-\n-DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (8.0.16) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n-\n-```shell\n-mysql -uroot -p\n-\n-mysql> CREATE DATABASE dolphinscheduler DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;\n-\n-# Change {user} and {password} by requests\n-mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'%' IDENTIFIED BY '{password}';\n-mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'localhost' IDENTIFIED BY '{password}';\n-\n-mysql> flush privileges;\n-```\n-\n-Run the latest schema file manually in `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_*.sql` to initialization you database. If you use MySQL, please run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql`, for PostgreSQL run `dolphinscheduler/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgre.sql`\n-\n-> **_NOTICE:_** In the latest version, the way running command `sh script/create-dolphinscheduler.sh` initialization database is broken, We have created a [issue-6597][issue] to track and fix this problem\n-\n<!--\nModify the database configuration and initialize\n@@ -150,9 +130,31 @@ dbname=\"dolphinscheduler\"\nregistryServers=\"localhost:2181\"\n```\n+## Initialize the database\n+\n+DolphinScheduler metadata is stored in relational database. Currently, PostgreSQL and MySQL are supported. If you use MySQL, you need to manually download [mysql-connector-java driver][mysql] (8.0.16) and move it to the lib directory of DolphinScheduler. Let's take MySQL as an example for how to initialize the database\n+\n+```shell\n+mysql -uroot -p\n+\n+mysql> CREATE DATABASE dolphinscheduler DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;\n+\n+# Change {user} and {password} by requests\n+mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'%' IDENTIFIED BY '{password}';\n+mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'localhost' IDENTIFIED BY '{password}';\n+\n+mysql> flush privileges;\n+```\n+\n+After above steps done you would create a new database for DolphinScheduler, then run shortcut Shell scripts to init database\n+\n+```shell\n+sh script/create-dolphinscheduler.sh\n+```\n+\n## Start DolphinScheduler\n-Use deployment user you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n+Use **deployment user** you created above, running the following command to complete the deployment, and the server log will be stored in the logs folder\n```shell\nsh install.sh\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[install] Fix unfriendly and errors in the 2.x deployment documents (#652)
36,339
26.01.2022 11:18:23
-28,800
c61e8571c2badcf0d1ba7712d0214c288116bc68
[develop] Unit test English version
[ { "change_type": "MODIFY", "old_path": "site_config/community.jsx", "new_path": "site_config/community.jsx", "diff": "@@ -100,6 +100,10 @@ export default {\ntitle: 'Micro BenchMark Notice',\nlink: '/en-us/community/development/microbench.html',\n},\n+ {\n+ title: 'Unit Test Writing Guide',\n+ link: '/en-us/community/development/unit-test.html',\n+ },\n],\n},\n{\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[develop] Unit test English version (#655)
36,284
26.01.2022 18:19:00
-28,800
63171f4942e8799ac662e4a1280b6daae875db08
[feat] Add python dist doc to document
[ { "change_type": "MODIFY", "old_path": ".github/workflows/website.yml", "new_path": ".github/workflows/website.yml", "diff": "@@ -2,9 +2,40 @@ name: Build and Deploy\non: [push]\n+env:\n+ PYDS_HOME: dolphinscheduler-python/pydolphinscheduler\n+\njobs:\n- build-and-deploy:\n+ build-py-doc:\n+ name: Build Python Doc\nruns-on: ubuntu-latest\n+ steps:\n+ - name: Checkout apache/dolphinscheduler\n+ uses: actions/checkout@v2\n+ with:\n+ repository: apache/dolphinscheduler\n+ - name: Set up Python 3.7\n+ uses: actions/setup-python@v2\n+ with:\n+ python-version: 3.7\n+ - name: Install Development Dependences\n+ working-directory: ${{ env.PYDS_HOME }}\n+ run: |\n+ pip install -r requirements_dev.txt\n+ pip install -e .\n+ - name: Test Build Document\n+ working-directory: ${{ env.PYDS_HOME }}/docs\n+ run: make clean && make html\n+ - uses: actions/upload-artifact@v2\n+ name: Upload Python API Dist Doc\n+ with:\n+ name: python-dist-doc\n+ path: ${{ env.PYDS_HOME }}/docs/build/html\n+ retention-days: 1\n+\n+ build-website-deploy:\n+ runs-on: ubuntu-latest\n+ needs: [ build-py-doc ]\nsteps:\n- name: Checkout\nuses: actions/checkout@master\n@@ -16,6 +47,12 @@ jobs:\n- name: Build\nrun: npm install && npm run build\n+ - uses: actions/download-artifact@v2\n+ name: Download Python API Dist Document\n+ with:\n+ name: python-dist-doc\n+ path: dist/python\n+\n- name: Deploy\nuses: peaceiris/actions-gh-pages@v3\nwith:\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[feat] Add python dist doc to document (#656)
36,324
28.01.2022 22:42:24
-28,800
65f31b9bba9f94b22230e56cc79680a89ec933cf
add new user logos of sutpc company
[ { "change_type": "ADD", "old_path": "img/ourusers/sutpc.png", "new_path": "img/ourusers/sutpc.png", "diff": "Binary files /dev/null and b/img/ourusers/sutpc.png differ\n" }, { "change_type": "MODIFY", "old_path": "site_config/home.jsx", "new_path": "site_config/home.jsx", "diff": "@@ -266,6 +266,9 @@ export default {\n{\nimg: '/img/ourusers/zhihuiqice.png',\n},\n+ {\n+ img: '/img/ourusers/sutpc.png',\n+ },\n],\n},\nuserreview: {\n@@ -535,6 +538,9 @@ export default {\n{\nimg: '/img/ourusers/zhihuiqice.png',\n},\n+ {\n+ img: '/img/ourusers/sutpc.png',\n+ },\n],\n},\nevents: {\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
add new user logos of sutpc company (#665)
36,333
29.01.2022 15:05:12
-28,800
0686bdc111de1145bfbf3473bf437880413a1b54
[plugin] Add WebexTeams alert plugin documentation
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-webexteams.md", "diff": "+# WebexTeams\n+\n+If you need to use WebexTeams to alert, please create an alarm Instance in warning instance manage, and then choose the WebexTeams plugin. The configuration example of enterprise WebexTeams is as follows:\n+\n+![enterprise-webexteams-plugin](/img/alert/enterprise-webexteams-plugin.png)\n+\n+\n+parameter configuration\n+\n+* botAccessToken\n+ > The robot's access token you were given\n+* roomID\n+ > The room ID of the message\n+* toPersonId\n+ > The person ID of the recipient when sending a private 1:1 message\n+* toPersonEmail\n+ > The email address of the recipient when sending a private 1:1 message\n+* atSomeoneInRoom\n+ > If the message destination is room, the user emails of the person being @, use ,(eng commas) to separate multiple emails\n+* destination\n+ > Provide only one message destination in the roomId, toPersonEmail, or toPersonId field\n+\n+[WebexTeams Application Bot Guide](https://developer.webex.com/docs/bots)\n+[WebexTeams Message Guide](https://developer.webex.com/docs/api/v1/messages/create-a-message)\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-plugin.png", "new_path": "img/alert/enterprise-webexteams-plugin.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-plugin.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[plugin] Add WebexTeams alert plugin documentation (#662)
36,284
29.01.2022 15:11:08
-28,800
28f4a5d2e2e07d7476a3c31ec5e10013288ba986
Fix ds python doc build ci ref: apache/dolphinscheduler#8210
[ { "change_type": "MODIFY", "old_path": ".github/workflows/website.yml", "new_path": ".github/workflows/website.yml", "diff": "@@ -21,8 +21,7 @@ jobs:\n- name: Install Development Dependences\nworking-directory: ${{ env.PYDS_HOME }}\nrun: |\n- pip install -r requirements_dev.txt\n- pip install -e .\n+ pip install -e .[doc]\n- name: Test Build Document\nworking-directory: ${{ env.PYDS_HOME }}/docs\nrun: make clean && make html\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Fix ds python doc build ci (#660) ref: apache/dolphinscheduler#8210
36,275
07.02.2022 11:08:14
-28,800
9da435518991adce39d4cc7f3755c18e13d92f78
[Feature-8245][Alert] add telegram alter plugin doc.
[ { "change_type": "ADD", "old_path": "img/alert/telegram-plugin.png", "new_path": "img/alert/telegram-plugin.png", "diff": "Binary files /dev/null and b/img/alert/telegram-plugin.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8245][Alert] add telegram alter plugin doc. (#666) Co-authored-by: Jiajie Zhong <[email protected]>
36,327
08.02.2022 18:57:31
-28,800
4c9c98cdf939702f18646f3e3039f3b2bb0d73d3
[plugin] Dingtalk alert supports markdown message type
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/dingtalk.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/dingtalk.md", "diff": "@@ -12,6 +12,8 @@ parameter configuration\n> Custom keywords for security settings\n* Secret\n> Signature of security settings\n+* MessageType\n+ > Support both text and markdown types\nWhen a custom bot sends a message, you can specify the \"@person list\" by your mobile phone number. When the people in the \"@people list\" receive the message, there will be a @ message reminder. Do not disturb conversations still notify reminders, and \"someone @ you\" appears on the fold\n* @Mobiles\n@@ -21,5 +23,4 @@ When a custom bot sends a message, you can specify the \"@person list\" by your mo\n* @All\n> Is @Everyone\n-[DingTalk Custom Robot Access Development Documentation](https://open.dingtalk.com/document/robots/custom-robot-access),\n-Use message type as text\n\\ No newline at end of file\n+[DingTalk Custom Robot Access Development Documentation](https://open.dingtalk.com/document/robots/custom-robot-access)\n" }, { "change_type": "MODIFY", "old_path": "img/alert/dingtalk-plugin.png", "new_path": "img/alert/dingtalk-plugin.png", "diff": "Binary files a/img/alert/dingtalk-plugin.png and b/img/alert/dingtalk-plugin.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[plugin] Dingtalk alert supports markdown message type (#673)
36,284
08.02.2022 19:58:03
-28,800
6bbcf7f9e85b6cabd452da4813e4a268ffb8346c
[ci] Fix dead link checker error flag
[ { "change_type": "MODIFY", "old_path": ".github/workflows/dead-link-checker.yaml", "new_path": ".github/workflows/dead-link-checker.yaml", "diff": "@@ -29,7 +29,7 @@ jobs:\ntimeout-minutes: 30\nsteps:\n- uses: actions/checkout@v2\n- - run: sudo npm install -g [email protected]\n+ - run: sudo npm install -g [email protected]\n- run: |\nfor file in $(find . -name \"*.md\"); do\nmarkdown-link-check -c .dlc.json -q \"$file\"\n" }, { "change_type": "MODIFY", "old_path": "development/en-us/e2e-test.md", "new_path": "development/en-us/e2e-test.md", "diff": "@@ -12,7 +12,7 @@ For example, E2E test of the login page is concerned with whether the user is ab\n### 2. Selenium test framework\n-[Selenium]((https://www.selenium.dev/)) is an open source testing tool for executing automated tests on a web browser. The framework uses WebDriver to transform Web Service commands into browser native calls through the browser's native components to complete operations. In simple words, it simulates the browser and makes selection operations on the elements of the page.\n+[Selenium](https://www.selenium.dev) is an open source testing tool for executing automated tests on a web browser. The framework uses WebDriver to transform Web Service commands into browser native calls through the browser's native components to complete operations. In simple words, it simulates the browser and makes selection operations on the elements of the page.\nA WebDriver is an API and protocol which defines a language-neutral interface for controlling the behavior of a web browser. Every browser has a specific WebDriver implementation, called a driver. The driver is the component responsible for delegating to the browser and handling the communication with Selenium and the browser.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[ci] Fix dead link checker error flag (#657)
36,339
09.02.2022 11:33:11
-28,800
3dfd8f136473c163351422238827f6bf7b537a59
[Feature-8022][Document] Add example and notice about task type MapReduce
[ { "change_type": "MODIFY", "old_path": "img/mr_java.png", "new_path": "img/mr_java.png", "diff": "Binary files a/img/mr_java.png and b/img/mr_java.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/mr.png", "new_path": "img/tasks/demo/mr.png", "diff": "Binary files /dev/null and b/img/tasks/demo/mr.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/resource_upload.png", "new_path": "img/tasks/demo/resource_upload.png", "diff": "Binary files /dev/null and b/img/tasks/demo/resource_upload.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/icons/mr.png", "new_path": "img/tasks/icons/mr.png", "diff": "Binary files /dev/null and b/img/tasks/icons/mr.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8022][Document] Add example and notice about task type MapReduce (#669)
36,284
09.02.2022 21:18:13
-28,800
bac049e3462c5c889346dab065700a1aa45060ab
[ci] Each PR need to pass ci "Dead Link Checker"
[ { "change_type": "MODIFY", "old_path": ".asf.yaml", "new_path": ".asf.yaml", "diff": "@@ -38,7 +38,8 @@ github:\nprotected_branches:\nmaster:\nrequired_status_checks:\n- strict: true\n+ contexts:\n+ - CheckDeadLinks\nrequired_pull_request_reviews:\ndismiss_stale_reviews: true\nrequired_approving_review_count: 1\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[ci] Each PR need to pass ci "Dead Link Checker" (#678) Co-authored-by: kezhenxu94 <[email protected]>
36,339
12.02.2022 18:00:09
-28,800
fe72749d1b94e1e46d8770f0a444a3837a7ca73b
[E2E] [Picture] Update the picture
[ { "change_type": "MODIFY", "old_path": "development/en-us/e2e-test.md", "new_path": "development/en-us/e2e-test.md", "diff": "@@ -104,7 +104,7 @@ The goToTab method is provided in SecurityPage to test the corresponding sidebar\n}\n```\n-![SecurityPage](../../img/e2e-test/SecurityPage.png)\n+![SecurityPage](/img/e2e-test/SecurityPage.png)\nFor navigation bar options jumping, the goToNav method is provided in `org/apache/dolphinscheduler/e2e/pages/common/NavBarPage.java`. The currently supported pages are: ProjectPage, SecurityPage and ResourcePage.\n" }, { "change_type": "MODIFY", "old_path": "img/e2e-test/SecurityPage.png", "new_path": "img/e2e-test/SecurityPage.png", "diff": "Binary files a/img/e2e-test/SecurityPage.png and b/img/e2e-test/SecurityPage.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[E2E] [Picture] Update the picture (#687) Co-authored-by: Jiajie Zhong <[email protected]>
36,339
12.02.2022 20:43:35
-28,800
938c8144c7e1881c94f17674c6512088ffedd046
[Feature-8024][Document] Add example and notice about task type Flink
[ { "change_type": "ADD", "old_path": "img/tasks/demo/flink_task.png", "new_path": "img/tasks/demo/flink_task.png", "diff": "Binary files /dev/null and b/img/tasks/demo/flink_task.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/upload_flink.png", "new_path": "img/tasks/demo/upload_flink.png", "diff": "Binary files /dev/null and b/img/tasks/demo/upload_flink.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/icons/flink.png", "new_path": "img/tasks/icons/flink.png", "diff": "Binary files /dev/null and b/img/tasks/icons/flink.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8024][Document] Add example and notice about task type Flink (#688)
36,284
13.02.2022 22:07:15
-28,800
54e11c07ba8ea9529f9ea094b1ac5c2d99983774
Add new committer: songjian
[ { "change_type": "MODIFY", "old_path": "community/en-us/team.md", "new_path": "community/en-us/team.md", "diff": "@@ -48,6 +48,7 @@ The DolphinScheduler team is comprised of Members and Contributors. Members have\n| Yizhi Wang | wangyizhi | [@Wangyizhi1](https://github.com/Wangyizhi1) |\n| ShunFeng Cai | caishunfeng | [@caishunfeng](https://github.com/caishunfeng) |\n| Wenjun Ruan | wenjun | [@ruanwenjun](https://github.com/ruanwenjun) |\n+| Jian Song | songjian | [@songjianet](https://github.com/songjianet) |\n## Contributors\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add new committer: songjian (#689)
36,339
16.02.2022 09:59:52
-28,800
c544090ad4a18e07353ba347ac78a6d2f0569167
[Feature-8021][Document] Add example and notice about task type Spark * Create load-balance.md docs: add en-us load-balance.md * Delete load-balance.md * update the spark task * fix the typo * Modify punctuation
[ { "change_type": "ADD", "old_path": "img/tasks/demo/spark_task.png", "new_path": "img/tasks/demo/spark_task.png", "diff": "Binary files /dev/null and b/img/tasks/demo/spark_task.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/upload_spark.png", "new_path": "img/tasks/demo/upload_spark.png", "diff": "Binary files /dev/null and b/img/tasks/demo/upload_spark.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/icons/spark.png", "new_path": "img/tasks/icons/spark.png", "diff": "Binary files /dev/null and b/img/tasks/icons/spark.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8021][Document] Add example and notice about task type Spark (#691) * Create load-balance.md docs: add en-us load-balance.md * Delete load-balance.md * update the spark task * fix the typo * Modify punctuation
36,339
25.02.2022 10:17:27
-28,800
1e67d73741f2c592ab640e379b90f94131b0f57d
[E2E][Issue-8454] Add E2E Contribution Guide
[ { "change_type": "ADD", "old_path": null, "new_path": "community/en-us/join/e2e-guide.md", "diff": "+# DolphinScheduler E2E Test Contribution Guide\n+\n+The main purpose of E2E test is to verify the integration and data integrity of the system, and its components, by simulating real user scenarios. This makes it possible to extend the scope of testing and ensure the health and stability of the system. To a certain extent, the test workload and costs are reduced. In simple terms, E2E testing is about treating a program as a black box and simulating the access behaviour of a real system from the user's point of view to see if the input to the test (user behaviour/simulated data) gives the expected results. Therefore, the community decided to add E2E automated testing to DolphinScheduler.\n+\n+The current community E2E test has not yet reached full coverage, so this document has been written with the aim of guiding more partners to get involved.\n+\n+### How to find the corresponding ISSUE?\n+\n+The E2E test pages are currently divided into four pages: Project Management, Resource Center, DataSource, and Security Center.\n+\n+Contributors can find the task by going to GitHub, searching for [apace/dolphinscheduler](https://github.com/apache/dolphinscheduler), and then searching for `e2e test cases` in the [issue list](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue+is%3Aopen+e2e+test+cases). As shown below.\n+\n+![e2e-issue](/img/community/join/e2e/e2e-issue.png)\n+\n+In each issue, we list the content to be tested and the expected results, which can be seen in the Description. Once you are on the current page, you can select the issue you are interested in, for example, to participate in the Security Center test, just leave a comment under the corresponding issue about the case you want to test.\n+\n+- Task status: If the test has been completed, it is considered finished and as a contributor you need to find the outstanding tests.\n+- number: Test case serial number.\n+- function module: Functional modules to be tested, a functional module containing multiple test cases.\n+- test point: Specific examples of what needs to be tested. For example button click actions on pages, page jump functions.\n+- priority: The priority of the test case, **which is recommended to find a high priority**.\n+- service: The service that needs to be started during the test process.\n+- test steps: The test steps to be performed for each test case.\n+- expected results: The expected test results.\n+- actual results: The actual results.\n+- remarks: The precautions needed during the test process.\n+\n+![e2e-security](/img/community/join/e2e/e2e-security.png)\n+\n+### How to write test code?\n+\n+After taking up the corresponding task, the next step is to get to the crux of writing the code. Many partners may not be familiar with E2E test codes, so you can refer to this page: [e2e-test](../../../development/zh-cn/e2e-test.md).\n+\n+### How to submit a Pull Request?\n+\n+Participation in the open source community can take many forms, including issue, pull request and translation. To participate in the E2E testing process, contributors are first required to understand the simple process of submitting a pull request, see: [Pull Request](../development/pull-request.md).\n" }, { "change_type": "ADD", "old_path": "img/community/join/e2e/e2e-issue.png", "new_path": "img/community/join/e2e/e2e-issue.png", "diff": "Binary files /dev/null and b/img/community/join/e2e/e2e-issue.png differ\n" }, { "change_type": "ADD", "old_path": "img/community/join/e2e/e2e-security.png", "new_path": "img/community/join/e2e/e2e-security.png", "diff": "Binary files /dev/null and b/img/community/join/e2e/e2e-security.png differ\n" }, { "change_type": "MODIFY", "old_path": "site_config/community.jsx", "new_path": "site_config/community.jsx", "diff": "@@ -46,6 +46,10 @@ export default {\ntitle: 'Review Issue or Pull Requests',\nlink: '/en-us/community/join/review.html',\n},\n+ {\n+ title: 'E2E Contribution Guide',\n+ link: '/en-us/community/join/e2e-guide.html',\n+ },\n],\n},\n{\n@@ -286,6 +290,10 @@ export default {\ntitle: 'Review Issue or Pull Requests',\nlink: '/zh-cn/community/join/review.html',\n},\n+ {\n+ title: 'E2E Contribution Guide',\n+ link: '/zh-cn/community/join/e2e-guide.html',\n+ },\n],\n},\n{\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[E2E][Issue-8454] Add E2E Contribution Guide (#699)
36,267
25.02.2022 13:26:19
-28,800
94b3640744b467f2c9955d78ec25ef7dd28f4092
[doc] Add task plugin doc of EMR
[ { "change_type": "MODIFY", "old_path": "site_config/docsdev.js", "new_path": "site_config/docsdev.js", "diff": "@@ -138,6 +138,10 @@ export default {\ntitle: 'Switch',\nlink: '/en-us/docs/dev/user_doc/guide/task/switch.html',\n},\n+ {\n+ title: 'Amazon EMR',\n+ link: '/en-us/docs/dev/user_doc/guide/task/emr.html',\n+ },\n],\n},\n{\n@@ -413,6 +417,10 @@ export default {\ntitle: 'Switch',\nlink: '/zh-cn/docs/dev/user_doc/guide/task/switch.html',\n},\n+ {\n+ title: 'Amazon EMR',\n+ link: '/zh-cn/docs/dev/user_doc/guide/task/emr.html',\n+ },\n],\n},\n{\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[doc] Add task plugin doc of EMR (#702) Co-authored-by: Jiajie Zhong <[email protected]>
36,339
25.02.2022 14:22:43
-28,800
e43fba9f1f7f8ad1ac607a5078c766dff39cef33
[Bug] [Doc] Fix e2e-test dead link
[ { "change_type": "MODIFY", "old_path": "community/en-us/join/e2e-guide.md", "new_path": "community/en-us/join/e2e-guide.md", "diff": "@@ -29,7 +29,7 @@ In each issue, we list the content to be tested and the expected results, which\n### How to write test code?\n-After taking up the corresponding task, the next step is to get to the crux of writing the code. Many partners may not be familiar with E2E test codes, so you can refer to this page: [e2e-test](../../../development/zh-cn/e2e-test.md).\n+After taking up the corresponding task, the next step is to get to the crux of writing the code. Many partners may not be familiar with E2E test codes, so you can refer to this page: [e2e-test](https://dolphinscheduler.apache.org/en-us/development/e2e-test.html).\n### How to submit a Pull Request?\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Bug] [Doc] Fix e2e-test dead link (#703)
36,284
01.03.2022 16:40:53
-28,800
bb26debc00c84bd15ffb940d4308aedd31244604
Add new steps in release-post include history-version and pypi release
[ { "change_type": "MODIFY", "old_path": "community/en-us/release-post.md", "new_path": "community/en-us/release-post.md", "diff": "@@ -13,13 +13,14 @@ For example, after the release of `x.y.z`, the following updates are required:\n- `kubernetes-deployment.md`\n- `standalone-deployment.md`\n- `upgrade.md`\n+ - `docs/en-us/release/history-versions.md` and `docs/zh-cn/release/history-versions.md`: Add the new version and link for x.y.z\n+ - `download/en-us/download.md` and `download/zh-cn/download.md`: add the download of the x.y.z release package\n- `site_config/docsx-y-z.js`: copy the old configuration file to the new version, and keep the content link same with x.y.z\n- `site_config/site.js`:\n- `docsLatest`: update to x.y.z\n- `docs0`: The `text` of two places of `en-us/zh-cn` needs to be updated to `latest(x.y.z)`\n- `docsxyz`: Add a drop-down menu with `key` as `docsxyz` and `text` as `x.y.z` in `children` of two places of `en-us/zh-cn`\n- `src/pages/docs/index.md.jsx`: Add `'x.y.z': docsxyzConfig,`\n- - `download/en-us/download.md` and `download/zh-cn/download.md`: add the download of the x.y.z release package\n## Add New Version To GitHub's bug-report.yml\n@@ -39,3 +40,8 @@ docker login # enter the username and password\ndocker push apache/dolphinscheduler:x.y.z\ndocker push apache/dolphinscheduler:latest\n```\n+\n+## Release to PyPI\n+\n+Python API need to release to PyPI for easier download and use, you can see more detail in [Python API release](https://github.com/apache/dolphinscheduler/blob/dev/dolphinscheduler-python/pydolphinscheduler/RELEASE.md#to-pypi)\n+to finish PyPI release.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add new steps in release-post include history-version and pypi release (#707)
36,359
01.03.2022 17:14:31
-28,800
256a3b93baaa95d20d835e622c7f86f8944cb070
[Docs] Add re-upload to resource center
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/resource.md", "new_path": "docs/en-us/dev/user_doc/guide/resource.md", "diff": "@@ -86,6 +86,15 @@ conf/common/hadoop.properties\n- delete\n> File list -> Click the \"Delete\" button to delete the specified file\n+- Re-upload file\n+\n+ > Re-upload file: Click the \"Re-upload File\" button to upload a new file to replace the old file, drag the file to the re-upload area, the file name will be automatically completed with the new file name\n+\n+ <p align=\"center\">\n+ <img src=\"/img/reupload_file_en.png\" width=\"80%\" />\n+ </p>\n+\n+\n## UDF management\n### Resource management\n" }, { "change_type": "ADD", "old_path": "img/reupload_file_en.png", "new_path": "img/reupload_file_en.png", "diff": "Binary files /dev/null and b/img/reupload_file_en.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Docs] Add re-upload to resource center (#710)
36,331
05.03.2022 15:01:49
-28,800
fbfda5247b1438aa679f49892ed1756764621da1
Add new Branch in submit-code
[ { "change_type": "MODIFY", "old_path": "community/en-us/development/submit-code.md", "new_path": "community/en-us/development/submit-code.md", "diff": "@@ -38,11 +38,17 @@ git checkout -b dev-1.0 upstream/dev-1.0\ngit push --set-upstream origin dev-1.0\n```\n-* After modifying the code locally, submit it to your own repository:\n+* Create new branch\n+```\n+git checkout -b xxx origin/dev\n+```\n+\n+Make sure that the branch `xxx` is building successfully on the latest code of the official dev branch\n+* After modifying the code locally in the new branch, submit it to your own repository:\n`git commit -m 'commit content'`\n-`git push`\n+`git push origin xxx --set-upstream`\n* Submit changes to the remote repository\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add new Branch in submit-code (#704)
36,329
09.03.2022 11:25:45
-28,800
ed0a8ef9325a96a293e6e1eee6c8f21850c67762
Proofreading dev documents under /user_doc/guide/datasource
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/datasource/hive.md", "new_path": "docs/en-us/dev/user_doc/guide/datasource/hive.md", "diff": "<img src=\"/img/hive-en.png\" width=\"80%\" />\n</p>\n-- Data source: select HIVE\n-- Data source name: enter the name of the data source\n-- Description: Enter a description of the data source\n-- IP/Host Name: Enter the IP connected to HIVE\n-- Port: Enter the port connected to HIVE\n-- Username: Set the username for connecting to HIVE\n-- Password: Set the password for connecting to HIVE\n-- Database name: Enter the name of the database connected to HIVE\n-- Jdbc connection parameters: parameter settings for HIVE connection, filled in in JSON form\n-\n-> NOTICE: If you wish execute multiple HIVE SQL in the same session, you could set `support.hive.oneSession = true` in\n-> configure `common.properties`. It is helpful when you try to set env before running HIVE SQL. Parameter\n-> `support.hive.oneSession` default value is `false` and SQL would run in different session if their more than one.\n+- Datasource: select `HIVE`\n+- Datasource name: enter the name of the DataSource\n+- Description: enter a description of the DataSource\n+- IP/Host Name: enter the HIVE service IP\n+- Port: enter the HIVE service port\n+- Username: set the username for HIVE connection\n+- Password: set the password for HIVE connection\n+- Database name: enter the database name of the HIVE connection\n+- Jdbc connection parameters: parameter settings for HIVE connection, in JSON format\n+\n+> NOTICE: If you wish to execute multiple HIVE SQL in the same session, you could set `support.hive.oneSession = true` in `common.properties`.\n+> It is helpful when you try to set env variables before running HIVE SQL. Default value of `support.hive.oneSession` is `false` and multi-SQLs run in different sessions.\n## Use HiveServer2 HA ZooKeeper\n<p align=\"center\">\n<img src=\"/img/hive1-en.png\" width=\"80%\" />\n</p>\n-Note: If Kerberos is not enabled, ensure that the parameter `hadoop.security.authentication.startup.state`. The state value is `false`, Parameter `java.security.krb5.conf.path` value is null or empty If **Kerberos** is enabled, it needs to be in common Properties configure the following parameters\n+NOTICE: If Kerberos is disabled, ensure the parameter `hadoop.security.authentication.startup.state` is false, and parameter `java.security.krb5.conf.path` value sets null.\n+If **Kerberos** is enabled, needs to set the following parameters in `common.properties`:\n```conf\n# whether to startup kerberos\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/datasource/introduction.md", "new_path": "docs/en-us/dev/user_doc/guide/datasource/introduction.md", "diff": "# DataSource\n-Data source center supports MySQL, POSTGRESQL, HIVE/IMPALA, SPARK, CLICKHOUSE, ORACLE, SQLSERVER and other data sources\n+DataSource supports MySQL, PostgreSQL, Hive/Impala, Spark, ClickHouse, Oracle, SQL Server and other DataSources.\n-- Click \"Data Source Center -> Create Data Source\" to create different types of data sources according to requirements.\n-- Click \"Test Connection\" to test whether the data source can be successfully connected.\n\\ No newline at end of file\n+- Click \"Data Source Center -> Create Data Source\" to create different types of DataSources according to requirements.\n+- Click \"Test Connection\" to test whether the DataSource can connect successfully.\n\\ No newline at end of file\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/datasource/mysql.md", "new_path": "docs/en-us/dev/user_doc/guide/datasource/mysql.md", "diff": "# MySQL\n-- Data source: select MYSQL\n-- Data source name: enter the name of the data source\n-- Description: Enter a description of the data source\n-- IP hostname: enter the IP to connect to MySQL\n-- Port: Enter the port to connect to MySQL\n-- Username: Set the username for connecting to MySQL\n-- Password: Set the password for connecting to MySQL\n-- Database name: Enter the name of the database connected to MySQL\n-- Jdbc connection parameters: parameter settings for MySQL connection, filled in in JSON form\n-\n<p align=\"center\">\n<img src=\"/img/mysql-en.png\" width=\"80%\" />\n</p>\n+\n+- Datasource: select MYSQL\n+- Datasource name: enter the name of the DataSource\n+- Description: enter a description of the DataSource\n+- IP/Host Name: enter the MYSQL service IP\n+- Port: enter the MYSQL service port\n+- Username: set the username for MYSQL connection\n+- Password: set the password for MYSQL connection\n+- Database name: enter the database name of the MYSQL connection\n+- Jdbc connection parameters: parameter settings for MYSQL connection, in JSON format\n+\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/datasource/postgresql.md", "new_path": "docs/en-us/dev/user_doc/guide/datasource/postgresql.md", "diff": "# PostgreSQL\n-- Data source: select POSTGRESQL\n-- Data source name: enter the name of the data source\n-- Description: Enter a description of the data source\n-- IP/Host Name: Enter the IP to connect to POSTGRESQL\n-- Port: Enter the port to connect to POSTGRESQL\n-- Username: Set the username for connecting to POSTGRESQL\n-- Password: Set the password for connecting to POSTGRESQL\n-- Database name: Enter the name of the database connected to POSTGRESQL\n-- Jdbc connection parameters: parameter settings for POSTGRESQL connection, filled in in JSON form\n-\n<p align=\"center\">\n<img src=\"/img/postgresql-en.png\" width=\"80%\" />\n</p>\n+\n+- Datasource: select POSTGRESQL\n+- Datasource name: enter the name of the DataSource\n+- Description: enter a description of the DataSource\n+- IP/Host Name: enter the PostgreSQL service IP\n+- Port: enter the PostgreSQL service port\n+- Username: set the username for PostgreSQL connection\n+- Password: set the password for PostgreSQL connection\n+- Database name: enter the database name of the PostgreSQL connection\n+- Jdbc connection parameters: parameter settings for PostgreSQL connection, in JSON format\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/datasource/spark.md", "new_path": "docs/en-us/dev/user_doc/guide/datasource/spark.md", "diff": "</p>\n- Datasource: select Spark\n-- Data source name: enter the name of the data source\n-- Description: Enter a description of the data source\n-- IP/Hostname: Enter the IP connected to Spark\n-- Port: Enter the port connected to Spark\n-- Username: Set the username for connecting to Spark\n-- Password: Set the password for connecting to Spark\n-- Database name: Enter the name of the database connected to Spark\n-- Jdbc connection parameters: parameter settings for Spark connection, filled in in JSON form\n+- Datasource name: enter the name of the DataSource\n+- Description: enter a description of the DataSource\n+- IP/Host Name: enter the Spark service IP\n+- Port: enter the Spark service port\n+- Username: set the username for Spark connection\n+- Password: set the password for Spark connection\n+- Database name: enter the database name of the Spark connection\n+- Jdbc connection parameters: parameter settings for Spark connection, in JSON format\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Proofreading dev documents under /user_doc/guide/datasource (#720)
36,329
09.03.2022 11:27:33
-28,800
123d5108200a08e59c18a80b74fcce2a07cff523
Proofreading dev documents under /user_doc/guide/alert
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/alert_plugin_user_guide.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/alert_plugin_user_guide.md", "diff": "## How to Create Alert Plugins and Alert Groups\n-In version 2.0.0, users need to create alert instances, and then associate them with alert groups, and an alert group can use multiple alert instances, and we will notify them one by one.\n+In version 2.0.0, users need to create alert instances, and then associate them with alert groups. Alert group can use multiple alert instances and notify them one by one.\n-First of all, you need to go to the Security Center, select Alarm Group Management, then click Alarm Instance Management on the left, then create an alarm instance, then select the corresponding alarm plug-in and fill in the relevant alarm parameters.\n+First, go to the Security Center page. Select Alarm Group Management, click Alarm Instance Management on the left and create an alarm instance. Select the corresponding alarm plug-in and fill in the relevant alarm parameters.\n-Then select Alarm Group Management, create an alarm group, and select the corresponding alarm instance.\n+Then select Alarm Group Management, create an alarm group, and choose the corresponding alarm instance.\n<img src=\"/img/alert/alert_step_1.png\">\n<img src=\"/img/alert/alert_step_2.png\">\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/dingtalk.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/dingtalk.md", "diff": "# DingTalk\n-If you need to use DingTalk for alerting, please create an alert instance in the alert instance management and select the DingTalk plugin. The configuration example of DingTalk is as follows:\n+If you need to use `DingTalk` for alerting, create an alert instance in the alert instance management and select the DingTalk plugin.\n+The `DingTalk` example configuration is as follows:\n![dingtalk-plugin](/img/alert/dingtalk-plugin.png)\n@@ -15,12 +16,12 @@ If you need to use DingTalk for alerting, please create an alert instance in the\n* MessageType\n> Support both text and markdown types\n-When a custom bot sends a message, you can specify the \"@person list\" by your mobile phone number. When the people in the \"@people list\" receive the message, there will be a @ message reminder. Do not disturb conversations still notify reminders, and \"someone @ you\" appears on the fold\n+When a custom bot sends a message, you can specify the \"@person list\" by their mobile phone number. When the selected people in the \"@people list\" receive the message, there will be a `@` message reminder. `No disturb` mode always receives reminders, and \"someone @ you\" appears in the message.\n* @Mobiles\n> The mobile phone number of the \"@person\"\n* @UserIds\n- > The userid by \"@person\"\n+ > The user ID by \"@person\"\n* @All\n- > Is @Everyone\n+ > @Everyone\n[DingTalk Custom Robot Access Development Documentation](https://open.dingtalk.com/document/robots/custom-robot-access)\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-webexteams.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-webexteams.md", "diff": "# Webex Teams\n-If you need to use Webex Teams to alert, please create an alarm Instance in warning instance manage, and then choose the WebexTeams plugin. The configuration example of enterprise WebexTeams is as follows:\n+If you need to use `Webex Teams` to alert, create an alert instance in the alert instance management, and choose the WebexTeams plugin.\n+The `WebexTeams` example configuration is as follows:\n![enterprise-webexteams-plugin](/img/alert/enterprise-webexteams-plugin.png)\n## Parameter Configuration\n* botAccessToken\n- > The robot's access token you were given\n+ > The robot's access token\n* roomID\n- > The room ID of the message\n+ > The ID of the room that receives message (only support one room ID)\n* toPersonId\n> The person ID of the recipient when sending a private 1:1 message\n* toPersonEmail\n> The email address of the recipient when sending a private 1:1 message\n* atSomeoneInRoom\n- > If the message destination is room, the user emails of the person being @, use ,(eng commas) to separate multiple emails\n+ > If the message destination is room, the emails of the person being @, use `,` (eng commas) to separate multiple emails\n* destination\n- > Provide only one message destination in the roomId, toPersonEmail, or toPersonId field\n+ > The destination of the message (one message only support one destination)\n[WebexTeams Application Bot Guide](https://developer.webex.com/docs/bots)\n[WebexTeams Message Guide](https://developer.webex.com/docs/api/v1/messages/create-a-message)\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-wechat.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-wechat.md", "diff": "# Enterprise WeChat\n-If you need to use Enterprise WeChat to alert, please create an alarm Instance in warning instance manage, and then choose the wechat plugin. The configuration example of enterprise WeChat is as follows\n+If you need to use `Enterprise WeChat` to alert, create an alert instance in the alert instance management, and choose the WeChat plugin.\n+The `WeChat` example configuration is as follows:\n![enterprise-wechat-plugin](/img/alert/enterprise-wechat-plugin.png)\n-Where send type corresponds to app and appchat respectively:\n+The parameter `send.type` corresponds to app and group chat respectively:\nAPP: https://work.weixin.qq.com/api/doc/90000/90135/90236\n-APPCHAT: https://work.weixin.qq.com/api/doc/90000/90135/90248\n+Group Chat: https://work.weixin.qq.com/api/doc/90000/90135/90248\n-user.send.msg corresponds to the content in the document. The variable of the corresponding value is {msg}\n\\ No newline at end of file\n+The parameter `user.send.msg` corresponds to the `content` in the document, and the corresponding variable is `{msg}`.\n\\ No newline at end of file\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Proofreading dev documents under /user_doc/guide/alert (#719)
36,339
10.03.2022 09:11:23
-28,800
9c331d20ae961a945a24dcfe5ae80b46bfb7d7e9
[Feature-8026][Document] Add example and notice about task type DataX * Create load-balance.md docs: add en-us load-balance.md * Delete load-balance.md * fix issue-8026 * remove the extra indentation
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/datax.md", "new_path": "docs/en-us/dev/user_doc/guide/task/datax.md", "diff": "# DataX\n-- Drag in the toolbar<img src=\"/img/datax.png\" width=\"35\"/>Task node into the drawing board\n-\n- <p align=\"center\">\n- <img src=\"/img/datax-en.png\" width=\"80%\" />\n- </p>\n-\n-- Custom template: When you turn on the custom template switch, you can customize the content of the json configuration file of the datax node (applicable when the control configuration does not meet the requirements)\n-- Data source: select the data source to extract the data\n-- sql statement: the sql statement used to extract data from the target database, the sql query column name is automatically parsed when the node is executed, and mapped to the target table synchronization column name. When the source table and target table column names are inconsistent, they can be converted by column alias (as)\n-- Target library: select the target library for data synchronization\n-- Target table: the name of the target table for data synchronization\n-- Pre-sql: Pre-sql is executed before the sql statement (executed by the target library).\n-- Post-sql: Post-sql is executed after the sql statement (executed by the target library).\n-- json: json configuration file for datax synchronization\n-- Custom parameters: SQL task type, and stored procedure is a custom parameter order to set values for the method. The custom parameter type and data type are the same as the stored procedure task type. The difference is that the SQL task type custom parameter will replace the \\${variable} in the SQL statement.\n+## Overview\n+\n+DataX task type for executing DataX programs. For DataX nodes, the worker will execute `${DATAX_HOME}/bin/datax.py` to analyze the input json file.\n+\n+## Create Task\n+\n+- Click Project Management -> Project Name -> Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Drag the <img src=\"/img/tasks/icons/datax.png\" width=\"15\"/> from the toolbar to the drawing board.\n+\n+## Task Parameter\n+\n+- **Node name**: The node name in a workflow definition is unique.\n+- **Run flag**: Identifies whether this node can be scheduled normally, if it does not need to be executed, you can turn on the prohibition switch.\n+- **Descriptive information**: describe the function of the node.\n+- **Task priority**: When the number of worker threads is insufficient, they are executed in order from high to low, and when the priority is the same, they are executed according to the first-in first-out principle.\n+- **Worker grouping**: Tasks are assigned to the machines of the worker group to execute. If Default is selected, a worker machine will be randomly selected for execution.\n+- **Environment Name**: Configure the environment name in which to run the script.\n+- **Number of failed retry attempts**: The number of times the task failed to be resubmitted.\n+- **Failed retry interval**: The time, in cents, interval for resubmitting the task after a failed task.\n+- **Delayed execution time**: The time, in cents, that a task is delayed in execution.\n+- **Timeout alarm**: Check the timeout alarm and timeout failure. When the task exceeds the \"timeout period\", an alarm email will be sent and the task execution will fail.\n+- **Custom template**: Custom the content of the DataX node's json profile when the default data source provided does not meet the required requirements.\n+- **json**: json configuration file for DataX synchronization.\n+- **Custom parameters**: SQL task type, and stored procedure is a custom parameter order to set values for the method. The custom parameter type and data type are the same as the stored procedure task type. The difference is that the SQL task type custom parameter will replace the \\${variable} in the SQL statement.\n+- **Data source**: Select the data source from which the data will be extracted.\n+- **sql statement**: the sql statement used to extract data from the target database, the sql query column name is automatically parsed when the node is executed, and mapped to the target table synchronization column name. When the source table and target table column names are inconsistent, they can be converted by column alias.\n+- **Target library**: Select the target library for data synchronization.\n+- **Pre-sql**: Pre-sql is executed before the sql statement (executed by the target library).\n+- **Post-sql**: Post-sql is executed after the sql statement (executed by the target library).\n+- **Stream limit (number of bytes)**: Limits the number of bytes in the query.\n+- **Limit flow (number of records)**: Limit the number of records for a query.\n+- **Running memory**: the minimum and maximum memory required can be configured to suit the actual production environment.\n+- **Predecessor task**: Selecting a predecessor task for the current task will set the selected predecessor task as upstream of the current task.\n+\n+## Task Example\n+\n+This example demonstrates importing data from Hive into MySQL.\n+\n+### Configuring the DataX environment in DolphinScheduler\n+\n+If you are using the DataX task type in a production environment, it is necessary to configure the required environment first. The configuration file is as follows: `/dolphinscheduler/conf/env/dolphinscheduler_env.sh`.\n+\n+![datax_task01](/img/tasks/demo/datax_task01.png)\n+\n+After the environment has been configured, DolphinScheduler needs to be restarted.\n+\n+### Configuring DataX Task Node\n+\n+As the default data source does not contain data to be read from Hive, a custom json is required, refer to: [HDFS Writer](https://github.com/alibaba/DataX/blob/master/hdfswriter/doc/hdfswriter.md). Note: Partition directories exist on the HDFS path, when importing data in real world situations, partitioning is recommended to be passed as a parameter, using custom parameters.\n+\n+After writing the required json file, you can configure the node content by following the steps in the diagram below.\n+\n+![datax_task02](/img/tasks/demo/datax_task02.png)\n+\n+### View run results\n+\n+![datax_task03](/img/tasks/demo/datax_task03.png)\n+\n+### Notice\n+\n+If the default data source provided does not meet your needs, you can configure the writer and reader of DataX according to the actual usage environment in the custom template option, available at https://github.com/alibaba/DataX.\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/datax_task01.png", "new_path": "img/tasks/demo/datax_task01.png", "diff": "Binary files /dev/null and b/img/tasks/demo/datax_task01.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/datax_task02.png", "new_path": "img/tasks/demo/datax_task02.png", "diff": "Binary files /dev/null and b/img/tasks/demo/datax_task02.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/datax_task03.png", "new_path": "img/tasks/demo/datax_task03.png", "diff": "Binary files /dev/null and b/img/tasks/demo/datax_task03.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/icons/datax.png", "new_path": "img/tasks/icons/datax.png", "diff": "Binary files /dev/null and b/img/tasks/icons/datax.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8026][Document] Add example and notice about task type DataX (#723) * Create load-balance.md docs: add en-us load-balance.md * Delete load-balance.md * fix issue-8026 * remove the extra indentation
36,329
10.03.2022 11:00:38
-28,800
13d472f5c644064aa4d490321a5b0c6332827fd3
Proofreading dev documents under /user_doc/guide/parameter
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/parameter/global.md", "new_path": "docs/en-us/dev/user_doc/guide/parameter/global.md", "diff": "## Scope\n-The parameters configured on the workflow definition dialog, the whole workflow is it's scope.\n+The parameters defined on the process definition page can apply to all the scope of the process tasks.\n## Usage\n-the approach to set global parameters is, after defining the workflow, click the 'save' button, then click the '+' button below the 'Set global':\n+Usage of global parameters is: at the process define page, click the '+' beside the 'Set global' and fill in the key and value to save:\n<p align=\"center\">\n<img src=\"/img/supplement_global_parameter_en.png\" width=\"80%\" />\n@@ -16,4 +16,4 @@ the approach to set global parameters is, after defining the workflow, click the\n<img src=\"/img/local_parameter_en.png\" width=\"80%\" />\n</p>\n-The global_bizdate parameter defined here can be referenced by local parameters of any other task node, and the value of global_bizdate is set to the figure obtained by referencing the system parameter system.biz.date\n+The `global_bizdate` parameter defined here can be referenced by local parameters of any other task node, and set the value of `global_bizdate` by referencing the system parameter `system.biz.date`.\n\\ No newline at end of file\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/parameter/local.md", "new_path": "docs/en-us/dev/user_doc/guide/parameter/local.md", "diff": "## Scope\n-Parameters configured on the task definition dialog, the scope of this parameter only for this task, but if you configured follow [Parameter Context](context.md), it could passed follow task.\n+Parameters configured on the task definition page, the scope of this parameter is inside this task only. But if you configure according to [Refer to Parameter Context](context.md), it could pass to downstream tasks.\n## Usage\n-The approach to set local parameters is, double-click on any node while defining the workflow and click the '+' button next to the 'Custom Parameters':\n+Usage of local parameters is: at the task define page, click the '+' beside the 'Custom Parameters' and fill in the key and value to save:\n<p align=\"center\">\n<img src=\"/img/supplement_local_parameter_en.png\" width=\"80%\" />\n@@ -16,4 +16,4 @@ The approach to set local parameters is, double-click on any node while defining\n<img src=\"/img/global_parameter_en.png\" width=\"80%\" />\n</p>\n-If you want to call the [built-in parameter](built-in.md) in the local parameters, fill in the value corresponding to the built-in parameters in `value`, as in the above figure, `${biz_date}` and `${curdate}`\n+If you want to call the [built-in parameter](built-in.md) in the local parameters, fill in thevalue of built-in parameters in `value`. As in the above figure, `${biz_date}` and `${curdate}`.\n\\ No newline at end of file\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Proofreading dev documents under /user_doc/guide/parameter (#722)
36,284
10.03.2022 11:09:14
-28,800
8a3eef0bc6f2127c6b391f4109f534f125c3d111
[ci] Only run website deploy when push to master branch * [ci] Only run website deploy when push to master branch To avoid trigger website build when push to other remote branch. Other branch maybe refactor and will delete some exists content * Hive website is broken, temp ignore it
[ { "change_type": "MODIFY", "old_path": ".dlc.json", "new_path": ".dlc.json", "diff": "{\n\"pattern\": \"^http://localhost\"\n},\n+ {\n+ \"pattern\": \"^https://hive.apache.org\"\n+ },\n{\n\"pattern\": \"^http://192\"\n}\n" }, { "change_type": "MODIFY", "old_path": ".github/workflows/website.yml", "new_path": ".github/workflows/website.yml", "diff": "name: Build and Deploy\n-on: [push]\n+on:\n+ push:\n+ branches:\n+ - master\nenv:\nPYDS_HOME: dolphinscheduler-python/pydolphinscheduler\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[ci] Only run website deploy when push to master branch (#726) * [ci] Only run website deploy when push to master branch To avoid trigger website build when push to other remote branch. Other branch maybe refactor and will delete some exists content * Hive website is broken, temp ignore it
36,339
10.03.2022 16:46:02
-28,800
c70af8fcf73d711099b2c547e08559f51ac65c8a
[Document][New UI] Add the configure and update the UI picture
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/flink.md", "new_path": "docs/en-us/dev/user_doc/guide/task/flink.md", "diff": "@@ -46,19 +46,25 @@ Flink task type for executing Flink programs. For Flink nodes, the worker submit\nThis is a common introductory case in the Big Data ecosystem, which often applied to computational frameworks such as MapReduce, Flink and Spark. The main purpose is to count the number of identical words in the input text. (Flink's releases come with this example job)\n+#### Configure the flink environment in DolphinScheduler\n+\n+If you are using the flink task type in a production environment, it is necessary to configure the required environment first. The configuration file is as follows: `/dolphinscheduler/conf/env/dolphinscheduler_env.sh`.\n+\n+![demo-flink-simple](/img/tasks/demo/flink_task01.png)\n+\n#### Upload the Main Package\nWhen using the Flink task node, you will need to use the Resource Centre to upload the jar package for the executable. Refer to the [resource center](../resource.md).\nAfter configuring the Resource Centre, you can upload the required target files directly using drag and drop.\n-![resource_upload](/img/tasks/demo/upload_flink.png)\n+![resource_upload](/img/tasks/demo/upload_jar.png)\n#### Configure Flink Nodes\nSimply configure the required content according to the parameter descriptions above.\n-![demo-flink-simple](/img/tasks/demo/flink_task.png)\n+![demo-flink-simple](/img/tasks/demo/flink_task02.png)\n## Notice\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/map-reduce.md", "new_path": "docs/en-us/dev/user_doc/guide/task/map-reduce.md", "diff": "This example is a common introductory type of MapReduce application, which is designed to count the number of identical words in the input text.\n+#### Configure the MapReduce environment in DolphinScheduler\n+\n+If you are using the MapReduce task type in a production environment, it is necessary to configure the required environment first. The configuration file is as follows: `/dolphinscheduler/conf/env/dolphinscheduler_env.sh`.\n+\n+![mr_configure](/img/tasks/demo/mr_task01.png)\n+\n#### Upload the Main Package\nWhen using the MapReduce task node, you will need to use the Resource Centre to upload the jar package for the executable. Refer to the [resource centre](../resource.md).\nAfter configuring the Resource Centre, you can upload the required target files directly using drag and drop.\n-![resource_upload](/img/tasks/demo/resource_upload.png)\n+![resource_upload](/img/tasks/demo/upload_jar.png)\n#### Configure MapReduce Nodes\nSimply configure the required content according to the parameter descriptions above.\n-![demo-mr-simple](/img/tasks/demo/mr.png)\n+![demo-mr-simple](/img/tasks/demo/mr_task02.png)\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/spark.md", "new_path": "docs/en-us/dev/user_doc/guide/task/spark.md", "diff": "@@ -43,19 +43,25 @@ Spark task type for executing Spark programs. For Spark nodes, the worker submit\nThis is a common introductory case in the Big Data ecosystem, which often applied to computational frameworks such as MapReduce, Flink and Spark. The main purpose is to count the number of identical words in the input text.\n+#### Configure the Spark environment in DolphinScheduler\n+\n+If you are using the Spark task type in a production environment, it is necessary to configure the required environment first. The configuration file is as follows: `/dolphinscheduler/conf/env/dolphinscheduler_env.sh`.\n+\n+![spark_configure](/img/tasks/demo/spark_task01.png)\n+\n#### Upload the Main Package\nWhen using the Spark task node, you will need to use the Resource Center to upload the jar package for the executable. Refer to the [resource center](../resource.md).\nAfter configuring the Resource Center, you can upload the required target files directly using drag and drop.\n-![resource_upload](/img/tasks/demo/upload_spark.png)\n+![resource_upload](/img/tasks/demo/upload_jar.png)\n#### Configure Spark Nodes\nSimply configure the required content according to the parameter descriptions above.\n-![demo-spark-simple](/img/tasks/demo/spark_task.png)\n+![demo-spark-simple](/img/tasks/demo/spark_task02.png)\n## Notice\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/flink_task01.png", "new_path": "img/tasks/demo/flink_task01.png", "diff": "Binary files /dev/null and b/img/tasks/demo/flink_task01.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/flink_task02.png", "new_path": "img/tasks/demo/flink_task02.png", "diff": "Binary files /dev/null and b/img/tasks/demo/flink_task02.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/mr_task01.png", "new_path": "img/tasks/demo/mr_task01.png", "diff": "Binary files /dev/null and b/img/tasks/demo/mr_task01.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/mr_task02.png", "new_path": "img/tasks/demo/mr_task02.png", "diff": "Binary files /dev/null and b/img/tasks/demo/mr_task02.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/spark_task01.png", "new_path": "img/tasks/demo/spark_task01.png", "diff": "Binary files /dev/null and b/img/tasks/demo/spark_task01.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/spark_task02.png", "new_path": "img/tasks/demo/spark_task02.png", "diff": "Binary files /dev/null and b/img/tasks/demo/spark_task02.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/upload_jar.png", "new_path": "img/tasks/demo/upload_jar.png", "diff": "Binary files /dev/null and b/img/tasks/demo/upload_jar.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Document][New UI] Add the configure and update the UI picture (#730)
36,339
14.03.2022 22:33:19
-28,800
b8851e0e85a8c571774047da154c827250d7fa70
[Feature-8017][Document] Add example and notice about task type Sub_process
[ { "change_type": "ADD", "old_path": "img/tasks/demo/subprocess_task01.png", "new_path": "img/tasks/demo/subprocess_task01.png", "diff": "Binary files /dev/null and b/img/tasks/demo/subprocess_task01.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/subprocess_task02.png", "new_path": "img/tasks/demo/subprocess_task02.png", "diff": "Binary files /dev/null and b/img/tasks/demo/subprocess_task02.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/subprocess_task03.png", "new_path": "img/tasks/demo/subprocess_task03.png", "diff": "Binary files /dev/null and b/img/tasks/demo/subprocess_task03.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/icons/sub_process.png", "new_path": "img/tasks/icons/sub_process.png", "diff": "Binary files /dev/null and b/img/tasks/icons/sub_process.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8017][Document] Add example and notice about task type Sub_process (#733)
36,339
18.03.2022 16:19:46
-28,800
46bc3400da0cbadf95e7b337e591b61958ea3597
[Feature-8025][Document] Add example and notice about task type HTTP
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/datax.md", "new_path": "docs/en-us/dev/user_doc/guide/task/datax.md", "diff": "@@ -6,7 +6,7 @@ DataX task type for executing DataX programs. For DataX nodes, the worker will e\n## Create Task\n-- Click Project Management -> Project Name -> Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page.\n- Drag from the toolbar <img src=\"/img/tasks/icons/datax.png\" width=\"15\"/> task node to canvas.\n## Task Parameter\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/flink.md", "new_path": "docs/en-us/dev/user_doc/guide/task/flink.md", "diff": "@@ -6,7 +6,7 @@ Flink task type for executing Flink programs. For Flink nodes, the worker submit\n## Create Task\n-- Click Project Management -> Project Name -> Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the \"Create Workflow\" button to enter the DAG editing page.\n- Drag from the toolbar <img src=\"/img/tasks/icons/flink.png\" width=\"15\"/>task node to canvas.\n## Task Parameter\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/http.md", "new_path": "docs/en-us/dev/user_doc/guide/task/http.md", "diff": "# HTTP Node\n-- Drag from the toolbar <img src=\"/img/http.png\" width=\"35\"/> task node to the canvas, as shown in the following figure:\n-\n-<p align=\"center\">\n- <img src=\"/img/http-en.png\" width=\"80%\" />\n- </p>\n-\n-- Node name: The node name in a workflow definition is unique.\n-- Run flag: Identifies whether this node schedules normally, if it does not need to execute, select the `prohibition execution`.\n-- Descriptive information: Describe the function of the node.\n-- Task priority: When the number of worker threads is insufficient, execute in the order of priority from high to low, and tasks with the same priority will execute in a first-in first-out order.\n-- Worker grouping: Assign tasks to the machines of the worker group to execute. If `Default` is selected, randomly select a worker machine for execution.\n-- Times of failed retry attempts: The number of times the task failed to resubmit. You can select from drop-down or fill-in a number.\n-- Failed retry interval: The time interval for resubmitting the task after a failed task. You can select from drop-down or fill-in a number.\n-- Timeout alarm: Check the timeout alarm and timeout failure. When the task runs exceed the \"timeout\", an alarm email will send and the task execution will fail.\n-- Request address: HTTP request URL.\n-- Request type: Support GET, POST, HEAD, PUT and DELETE.\n-- Request parameters: Support Parameter, Body and Headers.\n-- Verification conditions: Support default response code, custom response code, content include and content not included.\n-- Verification content: When the verification condition selects the custom response code, the content include or the content not included, the verification content is required.\n-- Custom parameter: It is a user-defined local parameter of HTTP, and will replace the content with `${variable}` in the script.\n+## Overview\n+\n+This node is used to perform http type tasks such as the common POST and GET request types, and also supports http request validation and other functions.\n+\n+## Create Task\n+\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Drag the <img src=\"/img/tasks/icons/http.png\" width=\"15\"/> from the toolbar to the drawing board.\n+\n+## Task Parameter\n+\n+- **Node name**: The node name in a workflow definition is unique.\n+- **Run flag**: Identifies whether this node can be scheduled normally, if it does not need to be executed, you can turn on the prohibition switch.\n+- **Descriptive information**: describe the function of the node.\n+- **Task priority**: When the number of worker threads is insufficient, they are executed in order from high to low, and when the priority is the same, they are executed according to the first-in first-out principle.\n+- **Worker grouping**: Tasks are assigned to the machines of the worker group to execute. If Default is selected, a worker machine will be randomly selected for execution.\n+- **Environment Name**: Configure the environment name in which to run the script.\n+- **Number of failed retry attempts**: The number of times the task failed to be resubmitted.\n+- **Failed retry interval**: The time, in cents, interval for resubmitting the task after a failed task.\n+- **Delayed execution time**: the time, in cents, that a task is delayed in execution.\n+- **Timeout alarm**: Check the timeout alarm and timeout failure. When the task exceeds the \"timeout period\", an alarm email will be sent and the task execution will fail.\n+- **Request address**: HTTP request URL.\n+- **Request type**: Support GET, POSt, HEAD, PUT, DELETE.\n+- **Request parameters**: Support Parameter, Body, Headers.\n+- **Verification conditions**: support default response code, custom response code, content included, content not included.\n+- **Verification content**: When the verification condition selects a custom response code, the content contains, and the content does not contain, the verification content is required.\n+- **Custom parameter**: It is a user-defined parameter of http part, which will replace the content with `${variable}` in the script.\n+- **Predecessor task**: Selecting a predecessor task for the current task will set the selected predecessor task as upstream of the current task.\n+\n+## Example\n+\n+HTTP defines the different methods of interacting with the server, the most basic methods are GET, POST, PUT and DELETE. Here we use the http task node to demonstrate the use of POST to send a request to the system's login page to submit data.\n+\n+The main configuration parameters are as follows:\n+\n+- URL: Address to access the target resource. Here is the system's login page.\n+- HTTP Parameters:\n+ - userName: Username\n+ - userPassword: User login password\n+\n+![http_task](/img/tasks/demo/http_task01.png)\n+\n+## Notice\n+\n+None\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/map-reduce.md", "new_path": "docs/en-us/dev/user_doc/guide/task/map-reduce.md", "diff": "@@ -6,7 +6,7 @@ MapReduce(MR) task type used for executing MapReduce programs. For MapReduce nod\n## Create Task\n-- Click Project Management-Project Name-Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page.\n- Drag from the toolbar <img src=\"/img/tasks/icons/mr.png\" width=\"15\"/> to the canvas.\n## Task Parameter\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/shell.md", "new_path": "docs/en-us/dev/user_doc/guide/task/shell.md", "diff": "@@ -6,7 +6,7 @@ Shell task used to create a shell task type and execute a series of shell script\n## Create Task\n-- Click Project Management-Project->Name-Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page.\n- Drag from the toolbar <img src=\"/img/tasks/icons/shell.png\" width=\"15\"/> to the canvas.\n## Task Parameter\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/spark.md", "new_path": "docs/en-us/dev/user_doc/guide/task/spark.md", "diff": "@@ -6,7 +6,7 @@ Spark task type used to execute Spark program. For Spark nodes, the worker submi\n## Create Task\n-- Click Project Management -> Project Name -> Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page.\n- Drag from the toolbar <img src=\"/img/tasks/icons/spark.png\" width=\"15\"/> to the canvas.\n## Task Parameter\n" }, { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/task/sql.md", "new_path": "docs/en-us/dev/user_doc/guide/task/sql.md", "diff": "@@ -10,7 +10,7 @@ Refer to [DataSource](../datasource/introduction.md)\n## Create Task\n-- Click Project Management-Project Name-Workflow Definition, and click the \"Create Workflow\" button to enter the DAG editing page.\n+- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the \"Create Workflow\" button to enter the DAG editing page.\n- Drag from the toolbar <img src=\"/img/tasks/icons/sql.png\" width=\"25\"/> to the canvas.\n## Task Parameter\n" }, { "change_type": "ADD", "old_path": "img/tasks/demo/http_task01.png", "new_path": "img/tasks/demo/http_task01.png", "diff": "Binary files /dev/null and b/img/tasks/demo/http_task01.png differ\n" }, { "change_type": "ADD", "old_path": "img/tasks/icons/http.png", "new_path": "img/tasks/icons/http.png", "diff": "Binary files /dev/null and b/img/tasks/icons/http.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[Feature-8025][Document] Add example and notice about task type HTTP (#741)
36,284
18.03.2022 22:39:03
-28,800
92c6e576da037042ab1e434ecd7f0a03aed23aaf
Fix dead link jump to dev version docs
[ { "change_type": "MODIFY", "old_path": "site_config/site.js", "new_path": "site_config/site.js", "diff": "@@ -42,7 +42,7 @@ export default {\n{\nkey: 'docsdev',\ntext: 'dev',\n- link: '/en-us/docs/dev/user_doc/guide/quick-start.html',\n+ link: '/en-us/docs/dev/user_doc/about/introduction.html',\n},\n],\n},\n@@ -224,7 +224,7 @@ export default {\n{\nkey: 'docsdev',\ntext: 'dev',\n- link: '/zh-cn/docs/dev/user_doc/guide/quick-start.html',\n+ link: '/zh-cn/docs/dev/user_doc/about/introduction.html',\n},\n],\n},\n" }, { "change_type": "MODIFY", "old_path": "sitemap.xml", "new_path": "sitemap.xml", "diff": "<lastmod>2021-11-18T03:50:27+00:00</lastmod>\n<priority>0.80</priority>\n</url>\n-<url>\n- <loc>https://dolphinscheduler.apache.org/en-us/docs/dev/user_doc/guide/quick-start.html</loc>\n- <lastmod>2021-11-18T03:50:27+00:00</lastmod>\n- <priority>0.80</priority>\n-</url>\n<url>\n<loc>https://dolphinscheduler.apache.org/en-us/download/download.html</loc>\n<lastmod>2021-11-17T08:02:58+00:00</lastmod>\n<lastmod>2021-11-18T03:50:27+00:00</lastmod>\n<priority>0.80</priority>\n</url>\n-<url>\n- <loc>https://dolphinscheduler.apache.org/zh-cn/docs/dev/user_doc/guide/quick-start.html</loc>\n- <lastmod>2021-11-18T03:50:27+00:00</lastmod>\n- <priority>0.80</priority>\n-</url>\n<url>\n<loc>https://dolphinscheduler.apache.org/zh-cn/download/download.html</loc>\n<lastmod>2021-11-17T08:02:58+00:00</lastmod>\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Fix dead link jump to dev version docs (#743)
36,329
31.03.2022 09:32:17
-28,800
d40ac62267f79f17ef548fd334eae91b8b505cb8
[FIX] [WEBSITE-9275]fix both en and cn webex doc
[ { "change_type": "MODIFY", "old_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-webexteams.md", "new_path": "docs/en-us/dev/user_doc/guide/alert/enterprise-webexteams.md", "diff": "# Webex Teams\nIf you need to use `Webex Teams` to alert, create an alert instance in the alert instance management, and choose the WebexTeams plugin.\n+You can pick private alert or room group chat alert.\nThe following is the `WebexTeams` configuration example:\n![enterprise-webexteams-plugin](/img/alert/enterprise-webexteams-plugin.png)\n@@ -20,5 +21,44 @@ The following is the `WebexTeams` configuration example:\n* destination\n> The destination of the message (one message only support one destination)\n+## Create a Bot\n+\n+Create a bot visit [Official Website My-Apps](https://developer.webex.com/my-apps) to `Create a New APP` and select `Create a Bot`, fill in the bot information and acquire `bot username` and `bot ID` for further usage.\n+\n+![enterprise-webexteams-bot-info](/img/alert/enterprise-webexteams-bot.png)\n+\n+## Create a Room\n+\n+Create a root visit [Official Website for Developer APIs](https://developer.webex.com/docs/api/v1/rooms/create-a-room) to create a new room, fill in the room name and acquire `id`(room ID) and `creatorId` for further usage.\n+\n+![enterprise-webexteams-room-info](/img/alert/enterprise-webexteams-room.png)\n+\n+### Invite Bot to the Room\n+\n+Invite bot to the room by invite bot Email (bot username).\n+\n+## Send Private Message\n+\n+In this way, you can send private message to a person by `User Email` or `UserId` in a private conversation. Fill in the `To Person Id` or `To Person Email`(recommended) and `Bot Access Token` and select `Destination` `personEmail` or `personId`.\n+The `user Email` is user register Email.\n+The `userId` we can acquire it from the `creatorId` of creating a new group chat room API.\n+\n+![enterprise-webexteams-private-message-form](/img/alert/enterprise-webexteams-private-form.png)\n+\n+### Private Alert Message Example\n+\n+![enterprise-webexteams-private-message-example](/img/alert/enterprise-webexteams-private-msg.png)\n+\n+## Send Group Room Message\n+\n+In this way, you can send group room message to a room by `Room ID`. Fill in the `Room Id` and `Bot Access Token` and select `Destination` `roomId`.\n+The `Room ID` we can acquire it from the `id` of creating a new group chat room API.\n+\n+![enterprise-webexteams-room](/img/alert/enterprise-webexteams-group-form.png)\n+\n+### Group Room Alert Message Example\n+\n+![enterprise-webexteams-room-message-example](/img/alert/enterprise-webexteams-room-msg.png)\n+\n[WebexTeams Application Bot Guide](https://developer.webex.com/docs/bots)\n[WebexTeams Message Guide](https://developer.webex.com/docs/api/v1/messages/create-a-message)\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-bot.png", "new_path": "img/alert/enterprise-webexteams-bot.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-bot.png differ\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-group-form.png", "new_path": "img/alert/enterprise-webexteams-group-form.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-group-form.png differ\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-private-form.png", "new_path": "img/alert/enterprise-webexteams-private-form.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-private-form.png differ\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-private-msg.png", "new_path": "img/alert/enterprise-webexteams-private-msg.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-private-msg.png differ\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-room-msg.png", "new_path": "img/alert/enterprise-webexteams-room-msg.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-room-msg.png differ\n" }, { "change_type": "ADD", "old_path": "img/alert/enterprise-webexteams-room.png", "new_path": "img/alert/enterprise-webexteams-room.png", "diff": "Binary files /dev/null and b/img/alert/enterprise-webexteams-room.png differ\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
[FIX] [WEBSITE-9275]fix both en and cn webex doc (#752)
36,311
01.04.2022 15:09:26
-28,800
1c2d0c59b8300df6336d46888868366e7b53f740
Add committer and fix e2e doc broken url
[ { "change_type": "MODIFY", "old_path": "community/en-us/team.md", "new_path": "community/en-us/team.md", "diff": "@@ -49,6 +49,11 @@ The DolphinScheduler team is comprised of Members and Contributors. Members have\n| ShunFeng Cai | caishunfeng | [@caishunfeng](https://github.com/caishunfeng) |\n| Wenjun Ruan | wenjun | [@ruanwenjun](https://github.com/ruanwenjun) |\n| Jian Song | songjian | [@songjianet](https://github.com/songjianet) |\n+| Zhaohe Sun | zixi0825 | [@zixi0825](https://github.com/zixi0825) |\n+| Tianqi Yan | tianqiyan | [@Tianqi-Dotes](https://github.com/Tianqi-Dotes) |\n+| Dongkai Liu | liudongkai | [@devosend](https://github.com/devosend) |\n+| Hua Jiang | huajiang | [@calvinjiang](https://github.com/calvinjiang) |\n+| Zihao Xiang | zihaoxiang | [@SbloodyS](https://github.com/SbloodyS) |\n## Contributors\n" }, { "change_type": "MODIFY", "old_path": "development/en-us/e2e-test.md", "new_path": "development/en-us/e2e-test.md", "diff": "@@ -179,8 +179,7 @@ https://github.com/apache/dolphinscheduler/tree/dev/dolphinscheduler-e2e/dolphin\n## III. Supplements\nWhen running E2E tests locally, First, you need to start the local service, you can refer to this page:\n-[development-environment-setup](https://dolphinscheduler.apache.\n-org/en-us/development/development-environment-setup.html)\n+[development-environment-setup](https://dolphinscheduler.apache.org/en-us/development/development-environment-setup.html)\nWhen running E2E tests locally, the `-Dlocal=true` parameter can be configured to connect locally and facilitate changes to the UI.\n" } ]
JavaScript
Apache License 2.0
apache/dolphinscheduler-website
Add committer and fix e2e doc broken url (#754)