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

sshPort和sshUser改为可配置,修改ES配置,添加path.logs,解决heapSize参数未生效问题 #629

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
Update service_ddl.json
修改ES配置
tianyayunhai authored Dec 12, 2024
commit 8a3f761b31e28a3808a017ee4fd00b40a400e167
Original file line number Diff line number Diff line change
@@ -116,13 +116,14 @@
"http.cors.enabled",
"http.cors.allow-origin",
"path.data",
"path.logs",
"custom.elasticsearch.yml"
]
},
{
"filename": "jvm.options",
"configFormat": "custom",
"outputDirectory": "",
"outputDirectory": "config/jvm.options.d",
"templateName": "jvm.options.ftl",
"includeParams": [
"heapSize"
@@ -260,7 +261,19 @@
"separator": ",",
"required": true,
"type": "multiple",
"value": ["/data/es"],
"value": ["/data/es/data"],
"configurableInWizard": true,
"hidden": false,
"defaultValue": ""
},
{
"name": "path.logs",
"label": "日志存储目录",
"description": "",
"configType": "path",
"required": true,
"type": "input",
"value": "/data/es/logs",
"configurableInWizard": true,
"hidden": false,
"defaultValue": ""
@@ -269,12 +282,16 @@
"name": "heapSize",
"label": "ES堆内存大小",
"description": "",
"required": false,
"configType": "map",
"required": true,
"minValue": 0,
"maxValue": 256,
"type": "input",
"value": "",
"unit": "GB",
"configurableInWizard": true,
"hidden": true,
"defaultValue": "2g"
"hidden": false,
"defaultValue": "2"
},
{
"name": "custom.elasticsearch.yml",
@@ -289,4 +306,4 @@
"defaultValue": ""
}
]
}
}