Skip to content

Commit

Permalink
chore(*): add jobmanager and taskmanager required memory setting to r…
Browse files Browse the repository at this point in the history
…equired config (#351)

need to set taskmanager.memory.flink.size and
jobmanager.memory.heap.size if you want to use flink-client to run a
flink job on yarn

Co-authored-by: zhangruixiong <zhangruixiong@ebupt.com>
  • Loading branch information
zhegemingzimeibanquan and zhangruixiong authored Jul 27, 2023
1 parent 27294aa commit 0ab5484
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
"templateName": "properties3.ftl",
"outputDirectory": "conf",
"includeParams": [
"jobmanager.memory.heap.size",
"taskmanager.memory.flink.size",
"high-availability",
"high-availability.storageDir",
"high-availability.zookeeper.quorum",
Expand All @@ -36,6 +38,28 @@
]
},
"parameters": [
{
"name": "jobmanager.memory.heap.size",
"label": "jobmanager堆内存大小",
"description": "",
"required": true,
"type": "input",
"value": "",
"configurableInWizard": true,
"hidden": false,
"defaultValue": "1600m"
},
{
"name": "taskmanager.memory.flink.size",
"label": "taskmanager堆内存大小",
"description": "",
"required": true,
"type": "input",
"value": "",
"configurableInWizard": true,
"hidden": false,
"defaultValue": "1280m"
},
{
"name": "enableJMHA",
"label": "开启JobManager高可用",
Expand Down

0 comments on commit 0ab5484

Please sign in to comment.