We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2d139 commit 169842bCopy full SHA for 169842b
source/s3_client.c
@@ -318,9 +318,13 @@ struct aws_s3_client *aws_s3_client_new(
318
mem_limit = GB_TO_BYTES(1);
319
}
320
#else
321
- if (client_config->throughput_target_gbps > 75.0) {
+ if (client_config->throughput_target_gbps >= 200.0) {
322
+ mem_limit = GB_TO_BYTES(24);
323
+ } else if (client_config->throughput_target_gbps >= 100.0) {
324
+ mem_limit = GB_TO_BYTES(16);
325
+ } else if (client_config->throughput_target_gbps >= 75.0) {
326
mem_limit = GB_TO_BYTES(8);
- } else if (client_config->throughput_target_gbps > 25.0) {
327
+ } else if (client_config->throughput_target_gbps >= 25.0) {
328
mem_limit = GB_TO_BYTES(4);
329
} else {
330
mem_limit = GB_TO_BYTES(2);
0 commit comments