We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
google-cloud-aiplatform
Get the memory footprint of python doing a simple and similar import. An unladen swallow is about 10MiB:
/usr/bin/time -l python -c 'import google.cloud' 0.03 real 0.01 user 0.00 sys 10878976 maximum resident set size <-- 11Mi 0 average shared memory size 0 average unshared data size 0 average unshared stack size 906 page reclaims 14 page faults 0 swaps 0 block input operations 0 block output operations 0 messages sent 0 messages received 0 signals received 24 voluntary context switches 29 involuntary context switches 134544684 instructions retired 52246608 cycles elapsed 7226432 peak memory footprint <-- 6.9Mi
Get memory footprint when importing aiplatform. It uses around 180MiB just doing the basic import.
/usr/bin/time -l python -c 'import google.cloud.aiplatform' 1.36 real 0.95 user 0.15 sys 191102976 maximum resident set size <-- 183Mi 0 average shared memory size 0 average unshared data size 0 average unshared stack size 20349 page reclaims 381 page faults 0 swaps 0 block input operations 0 block output operations 0 messages sent 0 messages received 0 signals received 2297 voluntary context switches 376 involuntary context switches 8019160261 instructions retired 3445365715 cycles elapsed 178669120 peak memory footprint <-- 171Mi
The text was updated successfully, but these errors were encountered:
Any news on this?
Sorry, something went wrong.
We just ran into this as well, makes this unusable in a production API environment. Has this been triaged?
the same problem..
No branches or pull requests
Environment details
google-cloud-aiplatform
version: Version: 1.72.0Steps to reproduce
Get the memory footprint of python doing a simple and similar import. An unladen swallow is about 10MiB:
Get memory footprint when importing aiplatform. It uses around 180MiB just doing the basic import.
The text was updated successfully, but these errors were encountered: