1
0
Fork 0
mirror of synced 2024-07-02 05:00:33 +12:00

Merge pull request #8066 from appwrite/revert-8060-feat-increase-chunk-size

Revert "Update chunk size to 7 MB"
This commit is contained in:
Christy Jacob 2024-05-03 10:19:14 +04:00 committed by GitHub
commit fd17b467c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ $http = new Server(
mode: SWOOLE_PROCESS,
);
$payloadSize = 8 * (1024 * 1024); // 8MB
$payloadSize = 6 * (1024 * 1024); // 6MB
$workerNumber = swoole_cpu_num() * intval(System::getEnv('_APP_WORKER_PER_CORE', 6));
$http

View file

@ -200,7 +200,7 @@ const APP_AUTH_TYPE_JWT = 'JWT';
const APP_AUTH_TYPE_KEY = 'Key';
const APP_AUTH_TYPE_ADMIN = 'Admin';
// Response related
const MAX_OUTPUT_CHUNK_SIZE = 7 * 1024 * 1024; // 7MB
const MAX_OUTPUT_CHUNK_SIZE = 2 * 1024 * 1024; // 2MB
// Function headers
const FUNCTION_ALLOWLIST_HEADERS_REQUEST = ['content-type', 'agent', 'content-length', 'host'];
const FUNCTION_ALLOWLIST_HEADERS_RESPONSE = ['content-type', 'content-length'];

2
composer.lock generated
View file

@ -5529,5 +5529,5 @@
"platform-overrides": {
"php": "8.3"
},
"plugin-api-version": "2.3.0"
"plugin-api-version": "2.6.0"
}

View file

@ -125,11 +125,11 @@ trait StorageBase
/**
* Failure
* Test for Chunk above 7MB
* Test for Chunk above 5MB
*/
$source = __DIR__ . "/../../../resources/disk-a/large-file.mp4";
$totalSize = \filesize($source);
$chunkSize = 8 * 1024 * 1024;
$chunkSize = 6 * 1024 * 1024;
$handle = @fopen($source, "rb");
$fileId = 'unique()';
$mimeType = mime_content_type($source);