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

feat: add buffer_limit functions #1922

Merged
merged 9 commits into from
Mar 20, 2025
Merged

feat: add buffer_limit functions #1922

merged 9 commits into from
Mar 20, 2025

Conversation

Fengxq2014
Copy link
Contributor

@Fengxq2014 Fengxq2014 commented Mar 18, 2025

Ⅰ. Describe what this PR did

  • add set_request_body_buffer_limit function for HttpContextWrapper
  • add set_response_body_buffer_limit function for HttpContextWrapper

Ⅱ. Does this pull request fix one issue?

Ⅲ. Why don't you add test cases (unit test/integration test)?

Ⅳ. Describe how to verify it

Ⅴ. Special notes for reviews

@CLAassistant
Copy link

CLAassistant commented Mar 18, 2025

CLA assistant check
All committers have signed the CLA.

@codecov-commenter
Copy link

codecov-commenter commented Mar 18, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 43.66%. Comparing base (ef31e09) to head (dcb2b77).
Report is 361 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1922      +/-   ##
==========================================
+ Coverage   35.91%   43.66%   +7.75%     
==========================================
  Files          69       78       +9     
  Lines       11576    12479     +903     
==========================================
+ Hits         4157     5449    +1292     
+ Misses       7104     6687     -417     
- Partials      315      343      +28     

see 73 files with indirect coverage changes

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Collaborator

@jizhuozhi jizhuozhi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM,cc @007gzs please confirm twice

Comment on lines 155 to 172
fn set_request_body_buffer_limit(&self, limit: u32) {
self.log()
.infof(format_args!("SetRequestBodyBufferLimit:{}", limit));
internal::set_property(
vec!["set_decoder_buffer_limit"],
Some(limit.to_string().as_bytes()),
);
}

fn set_response_body_buffer_limit(&self, limit: u32) {
self.log()
.infof(format_args!("SetResponseBodyBufferLimit:{}", limit));
internal::set_property(
vec!["set_encoder_buffer_limit"],
Some(limit.to_string().as_bytes()),
);
}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

set_decoder_buffer_limitset_encoder_buffer_limit是底层支持的标准参数么? @johnlanni 帮忙确认下。
另外internal::set_property建议修改为self.set_property

Copy link
Contributor Author

@Fengxq2014 Fengxq2014 Mar 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment on lines 471 to 473
if self.http_content.borrow().not_read_response_body() {
return DataAction::Continue;
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

两个 not_read_开头函数的使用场景是什么?<not_read_response_body返回true>和<cache_response_body 返回 false, on_http_response_body中不做处理> 的差异是什么

Copy link
Contributor Author

@Fengxq2014 Fengxq2014 Mar 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

在header阶段判断不需要read body即可交由上游处理的情况。
这两个 not_read_ 函数参考自go插件https://github.com/higress-group/higress/blob/main/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go#L246-L248

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

可以,名字也按照go的统一成 need_response_body need_request_body

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

已修改

let binding = self.rule_matcher.borrow();
let config = match binding.get_match_config() {
None => {
self.not_read_request_body();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里也换下,不过貌似这句没什么用

Copy link
Contributor Author

@Fengxq2014 Fengxq2014 Mar 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

重新修改了函数名称,我们应该对应go插件中的DontReadRequestBodyDontReadResponseBody方法
https://github.com/higress-group/higress/blob/main/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go#L215-L221
needRequestBodyCommonHttpCtx的属性并不对外暴露
https://github.com/higress-group/higress/blob/main/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go#L179

最终函数名称按照go的命名为dont_read_request_bodydont_read_response_body

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DontReadRequestBodyDontReadResponseBody是set方法,你的是get方法,用在这里不太合适,就像128行这执行一个get方法是没用的

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

是的,我重新看下这个问题

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

按照go插件实现有问题,在wrapper中只有PluginHttpWrapper可以设置属性,用户实现的是 trait HttpContextWrapper导致无法处理 PluginHttpWrapper的数据,不能动态修改,是否先不实现read_body相关方法

Copy link
Collaborator

@007gzs 007gzs Mar 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rust因为语言的一些限制导致没法和go的做成一样的,这个pr可以只修改 buffer_limit部分,read_body可以等想好怎么做再开个pr

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

好的,已经将相关代码删除,请检查一下

@Fengxq2014 Fengxq2014 changed the title feat: add buffer_limit and read_body functions feat: add buffer_limit functions Mar 20, 2025
Copy link
Collaborator

@007gzs 007gzs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@007gzs 007gzs merged commit dee4786 into alibaba:main Mar 20, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants