Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase the maximum communication duration and solve the problem of … #471

Open
wants to merge 1 commit into
base: branch-1.2.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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网页登录使用静态用户名",
Expand Down Expand Up @@ -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存放位置",
Expand Down