Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/en/administrator-guide/config/fe_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ HTTP Server V2 is implemented by SpringBoot. It uses an architecture that separa

### http_max_request_size

Default:100M
Default:100MB

The above two parameters are the http v2 version, the web maximum upload file limit, the default is 100M, you can modify it according to your needs.
The above two parameters are the http v2 version, the web maximum upload file limit, the default is 100MB, you can modify it according to your needs.

### frontend_address

Expand Down
4 changes: 2 additions & 2 deletions docs/zh-CN/administrator-guide/config/fe_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ HTTP Server V2 由 SpringBoot 实现。它采用前后端分离的架构。只

### http_max_request_size

默认值:100M
默认值:100MB

以上两个参数是http v2版本,web最大上传文件限制,默认100M,可以根据自己需要修改
以上两个参数是http v2版本,web最大上传文件限制,默认100MB,可以根据自己需要修改

### default_max_filter_ratio

Expand Down
6 changes: 3 additions & 3 deletions fe/fe-core/src/main/java/org/apache/doris/common/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ public class Config extends ConfigBase {
@ConfField public static int http_backlog_num = 1024;

/**
*Maximum file limit for single upload of web request, default value: 100M
*Maximum file limit for single upload of web request, default value: 100MB
*/
@ConfField public static String http_max_file_size = "100M";
@ConfField public static String http_max_request_size = "100M";
@ConfField public static String http_max_file_size = "100MB";
@ConfField public static String http_max_request_size = "100MB";

/**
* The backlog_num for mysql nio server
Expand Down