From f1dc8d29702738b54527e7389ff1840d8bfb090b Mon Sep 17 00:00:00 2001 From: weijian zhang Date: Thu, 7 Jul 2022 21:02:55 -0700 Subject: [PATCH] out_s3: update S3 PutObjectSize to 1GB (#5688) Signed-off-by: Weijian Zhang Signed-off-by: Manal Geries --- plugins/out_s3/s3.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/out_s3/s3.h b/plugins/out_s3/s3.h index 7b4695008f8..bb781d60ccc 100644 --- a/plugins/out_s3/s3.h +++ b/plugins/out_s3/s3.h @@ -41,7 +41,8 @@ #define MAX_FILE_SIZE 50000000000 #define MAX_FILE_SIZE_STR "50,000,000,000" -#define MAX_FILE_SIZE_PUT_OBJECT 50000000 +/* Allowed max file size 1 GB for publishing to S3 */ +#define MAX_FILE_SIZE_PUT_OBJECT 1000000000 #define DEFAULT_UPLOAD_TIMEOUT 3600