From 7d0955ae5f46fb1f75e439d33ebb1d14e5844199 Mon Sep 17 00:00:00 2001 From: keyu Date: Sun, 10 Dec 2023 21:00:52 +0800 Subject: [PATCH] Increase the maximum communication duration and solve the problem of the probability of failure during the first default installation of HDFS in Datasophon --- .../meta/DDP-1.2.0/HDFS/service_ddl.json | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/datasophon-api/src/main/resources/meta/DDP-1.2.0/HDFS/service_ddl.json b/datasophon-api/src/main/resources/meta/DDP-1.2.0/HDFS/service_ddl.json index 7867bbff..81d33aa3 100644 --- a/datasophon-api/src/main/resources/meta/DDP-1.2.0/HDFS/service_ddl.json +++ b/datasophon-api/src/main/resources/meta/DDP-1.2.0/HDFS/service_ddl.json @@ -196,6 +196,7 @@ "hadoop.http.staticuser.user", "ha.zookeeper.quorum", "hadoop.tmp.dir", + "ipc.client.connect.timeout", "net.topology.script.file.name", "hadoop.security.authentication", "hadoop.security.authorization", @@ -235,6 +236,9 @@ "dfs.namenode.rpc-address.nameservice1.nn2", "dfs.namenode.http-address.nameservice1.nn1", "dfs.namenode.http-address.nameservice1.nn2", + "dfs.qjournal.start-segment.timeout.ms", + "dfs.qjournal.select-input-streams.timeout.ms", + "dfs.qjournal.write-txns.timeout.ms", "dfs.namenode.shared.edits.dir", "dfs.ha.fencing.methods", "dfs.ha.fencing.ssh.private-key-files", @@ -300,6 +304,18 @@ "hidden": false, "defaultValue": "/data/tmp/hadoop" }, + { + "name": "ipc.client.connect.timeout", + "label": "IPC通信", + "description": "IPC通信超时时间", + "configType": "ha", + "required": true, + "type": "input", + "value": "", + "configurableInWizard": true, + "hidden": false, + "defaultValue": "600000" + }, { "name": "hadoop.http.staticuser.user", "label": "HDFS网页登录使用静态用户名", @@ -563,6 +579,42 @@ "hidden": false, "defaultValue": "${nn2}:9870" }, + { + "name": "dfs.qjournal.start-segment.timeout.ms", + "label": "qjournal的start-segment时间", + "description": "qjournal的start-segment超时时间", + "configType": "ha", + "required": true, + "type": "input", + "value": "", + "configurableInWizard": true, + "hidden": false, + "defaultValue": "600000" + }, + { + "name": "dfs.qjournal.select-input-streams.timeout.ms", + "label": "qjournal的select-input-streams时间", + "description": "qjournal的select-input-streams超时时间", + "configType": "ha", + "required": true, + "type": "input", + "value": "", + "configurableInWizard": true, + "hidden": false, + "defaultValue": "600000" + }, + { + "name": "dfs.qjournal.write-txns.timeout.ms", + "label": "qjournal的写入时间", + "description": "qjournal的写入超时时间", + "configType": "ha", + "required": true, + "type": "input", + "value": "", + "configurableInWizard": true, + "hidden": false, + "defaultValue": "600000" + }, { "name": "dfs.namenode.shared.edits.dir", "label": "NameNode元数据在JournalNode存放位置",