• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Question Memory exhausted when using AWS SDK

Bargavikalla

New Pleskian
I am using the AWS PHP SDK with my laravel app. I am not seeing issues with many of the API calls but when trying to retrieve a list of AMIs I am getting the following error.

Allowed memory size of 134217728 bytes exhausted (tried to allocate 10365580 bytes)

I know this is a AWS Technical php error and I can technically increase the memory, but I feel that shoudl not be neccessary. Below is the code I am using. is there something I can change to prevent this error?

$ec2 = AWS::get('Ec2');
$amis = $ec2->DescribeImages();
print_r($amis);
I also tried adding filters but I get the same error. even when tryign to fetch 1 AMI.

is anyone else having this issue?
 
Back
Top