ERROR while fitting RCF data : An error occurred (EntityTooLarge) when calling the PutObject operation: Your proposed upload exceeds the maximum allowed size.

0

I am fitting a RCF model to a dataset using rcf.fit(rcf.record_set(data[['Variable 1','Variable 2']].values.reshape(-1, 1))), but getting the below error :

An error occurred (EntityTooLarge) when calling the PutObject operation: Your proposed upload exceeds the maximum allowed size.

The size of the ndarray is 239393964

How can I fix this?

已提問 2 年前檢視次數 1260 次
1 個回答
0

This error occurs when the object being uploaded to S3 is too large. If a single PUT operation is being used by the AWS SDKs, REST API, or AWS CLI, you can upload a single object up to 5 GB in size.

Uploading objects - https://docs.aws.amazon.com/AmazonS3/latest/userguide/upload-objects.html

To upload objects larger than 5 GB in size, you can use multipart upload, with multipart upload you can upload a single large object up to 5 TB in size.

Uploading and copying objects using multipart upload - https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html

AWS
Chris_T
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南