This is an automated email from the ASF dual-hosted git repository.
SbloodyS pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 2cb705aef9 [Doc] Fix English FAQ answer formatting (#18288)
2cb705aef9 is described below
commit 2cb705aef9b1d5c94f9618d2ebe97f2ca59014e5
Author: 陈家名 <[email protected]>
AuthorDate: Sun May 24 10:14:35 2026 +0800
[Doc] Fix English FAQ answer formatting (#18288)
Co-authored-by: xiangzihao <[email protected]>
---
docs/docs/en/faq.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/docs/en/faq.md b/docs/docs/en/faq.md
index 2a100ed8f4..32832032fc 100644
--- a/docs/docs/en/faq.md
+++ b/docs/docs/en/faq.md
@@ -238,7 +238,7 @@ export
PATH=$HADOOP_HOME/bin:$SPARK_HOME/bin:$PYTHON_LAUNCHER:$JAVA_HOME/bin:$HI
## 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.
+A: We will add the kill task in 1.0.4 and kill all the various child processes
generated by the task.
---
@@ -370,7 +370,7 @@ A: The license of mysql jdbc connector is not compatible
with apache v2 license,
<p align="center">
<img
src="https://user-images.githubusercontent.com/16174111/81312485-476e9380-90b9-11ea-9aad-ed009db899b1.png"
width="60%" />
</p>
-A: This bug have fix in dev and in Requirement/TODO list.
+A: This bug has been fixed in dev and is in the Requirement/TODO list.
---
@@ -636,7 +636,7 @@ sed -i 's/Defaults requirett/#Defaults requirett/g'
/etc/sudoers
## Q:Deploy for multiple YARN clusters
-A:By deploying different worker in different yarn clusters,the steps are as
follows(eg: AWS EMR):
+A: By deploying different worker in different yarn clusters, the steps are as
follows(eg: AWS EMR):
1. Deploying the worker server on the master node of the EMR cluster
@@ -648,7 +648,7 @@ A:By deploying different worker in different yarn
clusters,the steps are as
## Q:Update process definition error: Duplicate key TaskDefinition
-A:Before DS 2.0.4 (after 2.0.0-alpha), there may be a problem of duplicate
keys TaskDefinition due to version switching, which may cause the update
workflow to fail; you can refer to the following SQL to delete duplicate data,
taking MySQL as an example: (Note: Before operating, be sure to back up the
original data, the SQL from
pr[#8408](https://github.com/apache/dolphinscheduler/pull/8408))
+A: Before DS 2.0.4 (after 2.0.0-alpha), there may be a problem of duplicate
keys TaskDefinition due to version switching, which may cause the update
workflow to fail; you can refer to the following SQL to delete duplicate data,
taking MySQL as an example: (Note: Before operating, be sure to back up the
original data, the SQL from
pr[#8408](https://github.com/apache/dolphinscheduler/pull/8408))
```SQL
DELETE FROM t_ds_process_task_relation_log WHERE id IN
@@ -736,7 +736,7 @@ DELETE FROM t_ds_task_definition_log WHERE id IN
## Q:Upgrade from 2.0.1 to 2.0.5 using PostgreSQL database failed
-A:The repair can be completed by executing the following SQL in the database:
+A: The repair can be completed by executing the following SQL in the database:
```SQL
update t_ds_version set version='2.0.1';
@@ -746,7 +746,7 @@ update t_ds_version set version='2.0.1';
## Q:Can not find python-gateway-server in distribute package
-A:After version 3.0.0-alpha, Python gateway server integrate into API server,
and Python gateway service will start when you
+A: After version 3.0.0-alpha, Python gateway server integrate into API server,
and Python gateway service will start when you
start API server. If you want disabled when Python gateway service you could
change API server configuration in path
`api-server/conf/application.yaml` and change attribute
`python-gateway.enabled : false`.