Q: What’s the name of this project?

A: DolphinScheduler


A: DolphinScheduler consists of 5 services, MasterServer, WorkerServer, ApiServer, AlertServer, LoggerServer and UI.

ServiceDescription
MasterServerMainly responsible for DAG segmentation and task status monitoring
WorkerServer/LoggerServerMainly responsible for the submission, execution and update of task status. LoggerServer is used for Rest Api to view logs through RPC
ApiServerProvides the Rest Api service for the UI to call
AlertServerProvide alarm service
UIFront page display

Note:Due to the large number of services, it is recommended that the single-machine deployment is preferably 4 cores and 16G or more.


Q: Which mailboxes does the system support?

A: Support most mailboxes, qq, 163, 126, 139, outlook, aliyun, etc. are supported. Support TLS and SSL protocols, optionally configured in alert.properties


Q: What are the common system variable time parameters and how do I use them?

A: Please refer to ‘System parameter’ in the system-manual


Q: pip install kazoo This installation gives an error. Is it necessary to install?

A: This is the python connection Zookeeper needs to use, it is used to delete the master/worker temporary node info in the Zookeeper. so you can ignore error if it’s your first install. after version 1.3.0, kazoo is not been needed, we use program to replace what kazoo done


Q: How to specify the machine running task

A: version 1.2 and berfore, Use the administrator to create a Worker group, specify the Worker group when the process definition starts, or specify the Worker group on the task node. If not specified, use Default, Default is to select one of all the workers in the cluster to use for task submission and execution. version 1.3, you can set worker group for the worker


Q: Priority of the task

A: We also support the priority of processes and tasks. Priority We have five levels of HIGHEST, HIGH, MEDIUM, LOW and LOWEST. You can set the priority between different process instances, or you can set the priority of different task instances in the same process instance. For details, please refer to the task priority design in the architecture-design.


Q: dolphinscheduler-grpc gives an error

A: Execute in the root directory: mvn -U clean package assembly:assembly -Dmaven.test.skip=true , then refresh the entire project. version 1.3 not use grpc, we use netty directly


Q: Does DolphinScheduler support running on windows?

A: In theory, only the Worker needs to run on Linux. Other services can run normally on Windows. But it is still recommended to deploy on Linux.


Q: UI compiles node-sass prompt in linux: Error: EACCESS: permission denied, mkdir xxxx

A: Install npm install node-sass —unsafe-perm separately, then npm install


Q: UI cannot log in normally.

A: 1, if it is node startup, check whether the .env API_BASE configuration under dolphinscheduler-ui is the Api Server service address.

​ 2, If it is nginx booted and installed via install-dolphinscheduler-ui.sh, check if the proxy_pass configuration in /etc/nginx/conf.d/dolphinscheduler.conf is the Api Server service address

​ 3, if the above configuration is correct, then please check if the Api Server service is normal,

​ curl http://192.168.xx.xx:12345/dolphinscheduler/users/get-user-info, check the Api Server log,

​ if Prompt cn.dolphinscheduler.api.interceptor.LoginHandlerInterceptor:[76] - session info is null, which proves that the Api Server service is normal.

​ 4, if there is no problem above, you need to check if server.context-path and server.port configuration in application.properties is correct


Q: After the process definition is manually started or scheduled, no process instance is generated.

A: 1, first check whether the MasterServer service exists through jps, or directly check whether there is a master service in zk from the service monitoring.

​ 2,If there is a master service, check the command status statistics or whether new records are added in t_ds_error_command. If it is added, please check the message field.


Q : The task status is always in the successful submission status.

A: 1, first check whether the WorkerServer service exists through jps, or directly check whether there is a worker service in zk from the service monitoring.

​ 2,If the WorkerServer service is normal, you need to check whether the MasterServer puts the task task in the zk queue. You need to check whether the task is blocked in the MasterServer log and the zk queue.

​ 3, if there is no problem above, you need to locate whether the Worker group is specified, but the machine grouped by the worker is not online.


Q: Is there a Docker image and a Dockerfile?

A: Provide Docker image and Dockerfile.

Docker image address: https://hub.docker.com/r/escheduler/escheduler_images

Dockerfile address: https://github.com/qiaozhanwei/escheduler_dockerfile/tree/master/docker_escheduler


Q : Need to pay attention to the problem in install.sh

A: 1, if the replacement variable contains special characters, use the \ transfer character to transfer

​ 2, installPath=”/data1_1T/dolphinscheduler”, this directory can not be the same as the install.sh directory currently installed with one click.

​ 3, deployUser = “dolphinscheduler”, the deployment user must have sudo privileges, because the worker is executed by sudo -u tenant sh xxx.command

​ 4, monitorServerState = “false”, whether the service monitoring script is started, the default is not to start the service monitoring script. If the service monitoring script is started, the master and worker services are monitored every 5 minutes, and if the machine is down, it will automatically restart.

​ 5, hdfsStartupSate=”false”, whether to enable HDFS resource upload function. The default is not enabled. If it is not enabled, the resource center cannot be used. If enabled, you need to configure the configuration of fs.defaultFS and yarn in conf/common/hadoop/hadoop.properties. If you use namenode HA, you need to copy core-site.xml and hdfs-site.xml to the conf root directory.

​ Note: The 1.0.x version does not automatically create the hdfs root directory, you need to create it yourself, and you need to deploy the user with hdfs operation permission.


Q : Process definition and process instance offline exception

A : For versions prior to 1.0.4, modify the code under the escheduler-api cn.escheduler.api.quartz package.

  1. public boolean deleteJob(String jobName, String jobGroupName) {
  2. lock.writeLock().lock();
  3. try {
  4. JobKey jobKey = new JobKey(jobName,jobGroupName);
  5. if(scheduler.checkExists(jobKey)){
  6. logger.info("try to delete job, job name: {}, job group name: {},", jobName, jobGroupName);
  7. return scheduler.deleteJob(jobKey);
  8. }else {
  9. return true;
  10. }
  11. } catch (SchedulerException e) {
  12. logger.error(String.format("delete job : %s failed",jobName), e);
  13. } finally {
  14. lock.writeLock().unlock();
  15. }
  16. return false;
  17. }

Q: Can the tenant created before the HDFS startup use the resource center normally?

A: No. Because the tenant created by HDFS is not started, the tenant directory will not be registered in HDFS. So the last resource will report an error.


Q: In the multi-master and multi-worker state, the service is lost, how to be fault-tolerant

A: Note: Master monitors Master and Worker services.

​ 1,If the Master service is lost, other Masters will take over the process of the hanged Master and continue to monitor the Worker task status.

​ 2,If the Worker service is lost, the Master will monitor that the Worker service is gone. If there is a Yarn task, the Kill Yarn task will be retried.

Please see the fault-tolerant design in the architecture for details.


Q : Fault tolerance for a machine distributed by Master and Worker

A: The 1.0.3 version only implements the fault tolerance of the Master startup process, and does not take the Worker Fault Tolerance. That is to say, if the Worker hangs, no Master exists. There will be problems with this process. We will add Master and Worker startup fault tolerance in version 1.1.0 to fix this problem. If you want to manually modify this problem, you need to modify the running task for the running worker task that is running the process across the restart and has been dropped. The running process is set to the failed state across the restart. Then resume the process from the failed node.


Q : Timing is easy to set to execute every second

A : Note when setting the timing. If the first digit (* * * * * ? *) is set to *, it means execution every second. We will add a list of recently scheduled times in version 1.1.0. You can see the last 5 running times online at http://cron.qqe2.com/


Q: Is there a valid time range for timing?

A: Yes, if the timing start and end time is the same time, then this timing will be invalid timing. If the end time of the start and end time is smaller than the current time, it is very likely that the timing will be automatically deleted.


Q : There are several implementations of task dependencies

A: 1, the task dependency between DAG, is from the zero degree of the DAG segmentation

​ 2, there are task dependent nodes, you can achieve cross-process tasks or process dependencies, please refer to the (DEPENDENT) node design in the system-manual.

​ Note: Cross-project processes or task dependencies are not supported


Q: There are several ways to start the process definition.

A: 1, in the process definition list, click the Start button.

​ 2, the process definition list adds a timer, scheduling start process definition.

​ 3, process definition view or edit the DAG page, any task node right click Start process definition.

​ 4, you can define DAG editing for the process, set the running flag of some tasks to prohibit running, when the process definition is started, the connection of the node will be removed from the DAG.


Q : Python task setting Python version

A: 1,for the version after 1.0.3 only need to modify PYTHON_HOME in conf/env/.dolphinscheduler_env.sh

  1. export PYTHON_HOME=/bin/python

Note: This is PYTHON_HOME , which is the absolute path of the python command, not the simple PYTHON_HOME. Also note that when exporting the PATH, you need to directly

  1. export PATH=$HADOOP_HOME/bin:$SPARK_HOME1/bin:$SPARK_HOME2/bin:$PYTHON_HOME:$JAVA_HOME/bin:$HIVE_HOME/bin:$PATH

​ 2,For versions prior to 1.0.3, the Python task only supports the Python version of the system. It does not support specifying the Python version.


Q:Worker Task will generate a child process through sudo -u tenant sh xxx.command, will kill when kill

A: We will add the kill task in 1.0.4 and kill all the various child processes generated by the task.


Q : How to use the queue in DolphinScheduler, what does the user queue and tenant queue mean?

A : The queue in the DolphinScheduler can be configured on the user or the tenant. The priority of the queue specified by the user is higher than the priority of the tenant queue. For example, to specify a queue for an MR task, the queue is specified by mapreduce.job.queuename.

Note: When using the above method to specify the queue, the MR uses the following methods:

  1. Configuration conf = new Configuration();
  2. GenericOptionsParser optionParser = new GenericOptionsParser(conf, args);
  3. String[] remainingArgs = optionParser.getRemainingArgs();

If it is a Spark task —queue mode specifies the queue


Q : Master or Worker reports the following alarm

FAQ - 图1

A : Change the value of master.properties master.reserved.memory under conf to a smaller value, say 0.1 or the value of worker.properties worker.reserved.memory is a smaller value, say 0.1


Q: The hive version is 1.1.0+cdh5.15.0, and the SQL hive task connection is reported incorrectly.

FAQ - 图2

A : Will hive pom

  1. <dependency>
  2. <groupId>org.apache.hive</groupId>
  3. <artifactId>hive-jdbc</artifactId>
  4. <version>2.1.0</version>
  5. </dependency>

change into

  1. <dependency>
  2. <groupId>org.apache.hive</groupId>
  3. <artifactId>hive-jdbc</artifactId>
  4. <version>1.1.0</version>
  5. </dependency>

Q : how to add a worker server

A: 1, Create deployment user and hosts mapping, please refer 1.3 part of cluster deployment

​ 2, Configure hosts mapping and ssh access and modify directory permissions. please refer 1.4 part of cluster deployment

​ 3, Copy the deployment directory from worker server that has already deployed

​ 4, Go to bin dir, then start worker server and logger server

  1. ./dolphinscheduler-daemon.sh start worker-server
  2. ./dolphinscheduler-daemon.sh start logger-server
  3. ```
  1. ---
  2. ## Q : When DolphinScheduler release a new version, and the change between current version and latest, and how to upgrade, and version number specification
  3. A: 1, The release process of Apache Project happens in the mailing list. You can subscribe DolphinScheduler's mailing list and then when the release is in process, you'll receive release emails. Please follow this [introduction](https://github.com/apache/dolphinscheduler#get-help) to subscribe DolphinScheduler's mailing list.
  4. 2, When new version published, there would be release note which describe the change log, and there also have upgrade document for the previous version to new's.
  5. 3, Version number is x.y.z, when x is increased, it represents the version of the new architecture. When y is increased, it means that it is incompatible with the y version before it needs to be upgraded by script or other manual processing. When the z increase represents a bug fix, the upgrade is fully compatible. No additional processing is required. Remaining problem, the 1.0.2 upgrade is not compatible with 1.0.1 and requires an upgrade script.
  6. ---
  7. ## Q : Subsequent tasks can execute even front task failed
  8. A: When start the workflow, you can set the task failure strategy: continue or failure. ![set task failure strategy](/projects/dolphinscheduler-2.0-en/52359ffd2e3651203c12c31c6664d5a6.png)
  9. ---
  10. ## Q : Workflow template DAG, workflow instance, work task and what is the relationship among them? A DAG supports a maximum concurrency of 100, does it mean that 100 workflow instances are generated and run concurrently? A task node in a DAG also has a concurrent number configuration. Does it mean that tasks can run concurrently with multiple threads? Is the maximum number 100?
  11. A:
  12. 1.2.1 version

master.properties Control the max parallel number of master node workflows master.exec.threads=100

Control the max number of parallel tasks in each workflow master.exec.task.number=20

worker.properties Control the max parallel number of worker node tasks worker.exec.threads=100

  1. ---
  2. ## Q : Worker group manage page no buttons displayed
  3. ![](/projects/dolphinscheduler-2.0-en/85395b25b3b173c9857b1e8708327c5c.png)
  4. A: For version 1.3.0, we want to support k8s, while the ip always will be changed, so can't config on the UI, worker can config group name in the worker.properties.
  5. ---
  6. ## Q : Why not add mysql jdbc connector to docker image
  7. A: The license of mysql jdbc connector is not compatible with apache v2 license, so it can't be included by docker image.
  8. ---
  9. ## Q : Allways fail when a task instance submit multiple yarn application
  10. ![](/projects/dolphinscheduler-2.0-en/03064656f741a3b5102981cf81db7471.png)
  11. A This bug have fix in dev and in Requirement/TODO list.
  12. ---
  13. ## Q : Master server and worker server stop abnormally after run for a few days
  14. ![](/projects/dolphinscheduler-2.0-en/692d02fdfafb96e7b3f848e9b69d48ac.png)
  15. A: Session timeout is too short, only 0.3 seconds. Change the config item in zookeeper.properties:

zookeeper.session.timeout=60000 zookeeper.connection.timeout=30000

  1. ---
  2. ## Q : Started using the docker-compose default configuration and display zookeeper errors
  3. ![](/projects/dolphinscheduler-2.0-en/87cb259bbaad962093ac4b3a503b1adc.png)
  4. A: This problem is solved in dev-1.3.0. This \[pr\](https://github.com/apache/dolphinscheduler/pull/2595) has solved this bug, brief change log:
  1. 1. add zookeeper environment variable ZOO_4LW_COMMANDS_WHITELIST in docker-compose.yml file.
  2. 2. change the data type of minLatency, avgLatency and maxLatency from int to float.
  1. ---
  2. ## Q : Interface show some task would be running all the time when db delayed and log show task instance is null
  3. ![](/projects/dolphinscheduler-2.0-en/48c3e818c73090dc1e89580dc2423d6a.jpeg)
  4. ![](/projects/dolphinscheduler-2.0-en/48c3e818c73090dc1e89580dc2423d6a.jpeg)
  5. A: This [bug](https://github.com/apache/dolphinscheduler/issues/1477) describe the problem detail and it has been been solved in version 1.2.1.
  6. For version under 1.2.1, some tips for this situation:
  1. clear the task queue in zk for path: /dolphinscheduler/task_queue
  2. change the state of the task to failed( integer value: 6).
  3. run the work flow by recover from failed ```

Q : Zookeeper masters znode list ip address is 127.0.0.1, instead of wanted ip eth0 or eth1, and may can’t see task log

A: bug fix:

  1. 1, confirm hostname
  2. $hostname
  3. hadoop1
  4. 2, hostname -i
  5. 127.0.0.1 10.3.57.15
  6. 3, edit /etc/hosts,delete hadoop1 from 127.0.0.1 record
  7. $cat /etc/hosts
  8. 127.0.0.1 localhost
  9. 10.3.57.15 ds1 hadoop1
  10. 4, hostname -i
  11. 10.3.57.15

Hostname cmd return server hostname, hostname -i return all matched ips configured in /etc/hosts. So after I delete the hostname matched with 127.0.0.1, and only remain internal ip resolution, instead of remove all the 127.0.0.1 resolution record. As long as hostname cmd return the correct internal ip configured in /etc/hosts can fix this bug. DolphinScheduler use the first record returned by hostname -i command. In my opion, DS should not use hostname -i to get the ip , as in many companies the devops configured the server name, we suggest use ip configured in configuration file or znode instead of /etc/hosts.


Q : The scheduling system set a second frequency task, causing the system to crash

A: The scheduling system not support second frequency task.


Q : Compile front-end code(dolphinscheduler-ui) show error cannot download “https://github.com/sass/node-sass/releases/download/v4.13.1/darwin-x64-72_binding.node

A: 1, cd dolphinscheduler-ui and delete node_modules directory

  1. sudo rm -rf node_modules

​ 2, install node-sass through npm.taobao.org

  1. sudo npm uninstall node-sass
  2. sudo npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/

3, if the 2nd step failure, please, referer url

  1. sudo npm rebuild node-sass

When solved this problem, if you don’t want to download this node every time, you can set system environment variable: SASS_BINARY_PATH= /xxx/xxx/xxx/xxx.node.


Q : How to config when use mysql as database instead of postgres

A: 1, Edit project root dir maven config file, remove scope test property so that mysql driver can be loaded.

  1. <dependency>
  2. <groupId>mysql</groupId>
  3. <artifactId>mysql-connector-java</artifactId>
  4. <version>${mysql.connector.version}</version>
  5. <scope>test<scope>
  6. </dependency>

​ 2, Edit application-dao.properties and quzrtz.properties config file to use mysql driver. Default is postgresSql driver because of license problem.


Q : How does a shell task run

A: 1, Where is the executed server? Specify one worker to run the task, you can create worker group in Security Center, then the task can be send to the particular worker. If a worker group have multiple servers, which server actually execute is determined by scheduling and has randomness.

​ 2, If it is a shell file of a path on the server, how to point to the path? The server shell file, involving permissions issues, it is not recommended to do so. It is recommended that you use the storage function of the resource center, and then use the resource reference in the shell editor. The system will help you download the script to the execution directory. If the task dependent on resource center files, worker use “hdfs dfs -get” to get the resource files in HDFS, then run the task in /tmp/escheduler/exec/process, this path can be customized when installtion dolphinscheduler.

3, Which user execute the task? Task is run by the tenant through “sudo -u ${tenant}”, tenant is a linux user.


Q : What’s the best deploy mode you suggest in production env

A: 1, I suggest you use 3 nodes for stability if you don’t have too many tasks to run. And deploy Master/Worker server on different nodes is better. If you only have one node, you of course only can deploy them together! By the way, how many machines you need is determined by your business. The DolphinScheduler system itself does not use too many resources. Test more, and you’ll find the right way to use a few machines.


Q : DEPENDENT Task Node

A: 1, DEPENDENT task node actually does not have script, it used for config data cycle dependent logic, and then add task node after that to realize task cycle dependent.


Q : How to change the boot port of the master

FAQ - 图3

A: 1, modify application_master.properties, for example: server.port=12345.


Q : Scheduled tasks cannot be online

A: 1, We can successly create scheduled task and add one record into t_scheduler_schedules table, but when I click online, front page no reaction and will lock table t_scheduler_schedules, and tested set field release_state value to 1 in table t_scheduler_schedules, and task display online state. For DS version above 1.2 table name is t_ds_schedules, other version table name is t_scheduler_schedules.


Q : What is the address of swagger ui

A: 1, For version 1.2+ is http://apiServerIp:apiServerPort/dolphinscheduler/doc.html others is http://apiServerIp:apiServerPort/escheduler/doc.html.


Q : Front-end installation package is missing files

FAQ - 图4

FAQ - 图5

A: 1, User changed the config api server config file and item apiServerContextPath, thus lead to the problem. After resume to the default value and problem solved.


Q : Upload a relatively large file blocked

FAQ - 图7

A: 1, Edit ngnix config file, edit upload max size client_max_body_size 1024m.

​ 2, the version of Google Chrome is old, and the latest version of the browser has been updated.


Q : Create a spark data source, click “Test Connection”, the system will fall back to the login page

A: 1, edit nginx config file /etc/nginx/conf.d/escheduler.conf

  1. proxy_connect_timeout 300s;
  2. proxy_read_timeout 300s;
  3. proxy_send_timeout 300s;

Q : Welcome to subscribe the DolphinScheduler development mailing list

A: In the process of using DolphinScheduler, if you have any questions or ideas, suggestions, you can participate in the DolphinScheduler community building through the Apache mailing list. Sending a subscription email is also very simple, the steps are as follows:

1, Send an email to dev-subscribe@dolphinscheduler.apache.org with your own email address, subject and content.

2, Receive confirmation email and reply. After completing step 1, you will receive a confirmation email from dev-help@dolphinscheduler.apache.org (if not received, please confirm whether the email is automatically classified as spam, promotion email, subscription email, etc.) . Then reply directly to the email, or click on the link in the email to reply quickly, the subject and content are arbitrary.

3, Receive a welcome email. After completing the above steps, you will receive a welcome email with the subject WELCOME to dev@dolphinscheduler.apache.org, and you have successfully subscribed to the Apache DolphinScheduler mailing list.


Q : Workflow Dependency

A: 1, It is currently judged according to natural days, at the end of last month: the judgment time is the workflow A start_time/scheduler_time between ‘2019-05-31 00:00:00’ and ‘2019-05-31 23:59:59’. Last month: It is judged that there is an A instance completed every day from the 1st to the end of the month. Last week: There are completed A instances 7 days last week. The first two days: Judging yesterday and the day before yesterday, there must be a completed A instance for two days.


Q : DS Backend Inteface Document

A: 1, http://106.75.43.194:8888/dolphinscheduler/doc.html?language=en.

During the operation of dolphinscheduler, the ip address is obtained incorrectly

When the master service and worker service are registered with zookeeper, relevant information will be created in the form of ip:port

If the ip address is obtained incorrectly, please check the network information. For example, in the Linux system, use the ifconfig command to view the network information. The following figure is an example:

FAQ - 图8

You can use the three strategies provided by dolphinscheduler to get the available ip:

  • default: First using internal network card to obtain the IP address, and then using external network card. If all above fail, use the address of the first available network card
  • inner: Use the internal network card to obtain the ip address, if fails thrown an exception.
  • outer: Use the external network card to obtain the ip address, if fails thrown an exception.

Modify the configuration in common.properties:

  1. # network IP gets priority, default: inner outer
  2. # dolphin.scheduler.network.priority.strategy=default

After configuration is modified, restart the service to activation

If the ip address is still wrong, please download dolphinscheduler-netutils.jar to the machine, execute the following commands and feedback the output to the community developers:

  1. java -jar target/dolphinscheduler-netutils.jar

Configure sudo to be secret free, which is used to solve the problem of using the default configuration sudo authority to be too large or unable to apply for root authority

Configure the sudo permission of the dolphinscheduler account to be an ordinary user manager within the scope of some ordinary users, and restrict specified users to run certain commands on the specified host. For detailed configuration, please see sudo rights management For example, sudo permission management configuration dolphinscheduler OS account can only operate the permissions of users userA, userB, userC (users userA, userB, and userC are used for multi-tenant submitting jobs to the big data cluster)

  1. echo 'dolphinscheduler ALL=(userA,userB,userC) NOPASSWD: NOPASSWD: ALL' >> /etc/sudoers
  2. sed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers

We will collect more FAQ later