-
Notifications
You must be signed in to change notification settings - Fork 202
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
perf: 脚本任务执行结果拉取优化 #2919 #2997
perf: 脚本任务执行结果拉取优化 #2919 #2997
Conversation
scriptTask: | ||
query: | ||
# 脚本任务执行,从 GSE 查询结果的 API 单次返回的脚本执行输出内容最大长度(单位 byte)。该参数需要合理设置,避免因为输出日志太多导致拉取 GSE 执行结果 API 超时。 | ||
contentSizeLimit: 536870912 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
建议支持更加语义化的配置,如512MB,FileSizeUtil类中已提供解析方法。
scriptTask: | ||
query: | ||
# GSE 脚本任务执行结果查询 API 单次返回的执行输出内容长度(单位 byte) | ||
contentSizeLimit: 536870912 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
建议支持更加语义化的配置,如512MB,FileSizeUtil类中已提供解析方法。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1个小问题需要处理。
|
修改点