Microsoft.Graph.Identity.Governance
uses too much RAM to even be imported to Azure Automation Account
#2981
Labels
status:waiting-for-triage
An issue that is yet to be reviewed or assigned
type:bug
A broken experience
Describe the bug
Microsoft.Graph.Identity.Governance
requires so much RAM that it cannot be used in Azure Automation Account.Simply importing
Microsoft.Graph.Identity.Governance
v2.23.0 gobbles up more than 500MB of RAM / memory!Microsoft.Graph.Beta.Identity.Governance
v2.24.0 even more, up to 1300MB.This is especially a problem when running in memory restricted environments like Azure Automation Account.
Testing with v2.23.0
Screenshots going from
pwsh -noprofile
with PowerShell v7.4.5 x64 on Windows 11 23H2.Clean start, idles at around 30 MB.
Import
Microsoft.Graph.Authentication
, does not take up much. Great.Importing
Microsoft.Graph.Identity.Governance
makes pwsh.exe idle at almost 500 MB. Ouch. I've seen this idle around 500-600 MB at other times.Expected behavior
Don't take hundreds of MB of RAM.
How to reproduce
See "Describe the bug"
SDK Version
2.23.0
Latest version known to work for scenario above?
No response
Known Workarounds
In resource limited environments, like Azure Automation Account, use
Microsoft.Graph.Authentication
only with cmdletInvoke-MgGraphRequest
to do API requests, instead of using other resource heavyMicrosoft.Graph
modules.In my example, replace:
with
You'll have to handle paging yourself with this approach.
Other
Maybe it'd be better to build and ship a single
.psm1
file, instead of dot sourcing?The text was updated successfully, but these errors were encountered: