Just a simple question out of curiosity.. what's t...
# general
b
Just a simple question out of curiosity.. what's the performance like for most of you in terms of pulumi and resource usage? On my end, node (running typescript pulumi) consumes at minimum 2gb of memory for infrastructure provisioning, and 3.5 gigs for kubernetes (these are the two programs I'm predominantly running). Also, with any major changes to code or if there's been a while, the first run takes about 10 minutes (at least) to reach preview stage. For me - the benefits far outweigh the gains, but I'm wondering if there might be a blog post somewhere about pulumi performance tuning that I could peruse to see if i'm having any pitfalls..
oh, and on windows as well.. Will be looking forward to seeing how this might fare with automation in the near future.
I'm guessing the best bet would be to instrument my actual code with jaeger or something to find out which ones (if any) cause the slowness / usage. Maybe a child-span for each component resource and one for each group of resources within that again..
b
@better-shampoo-48884 you can already do this: https://www.pulumi.com/docs/troubleshooting/#performance
b
Yup - though I currently just end up with one very long `/pulumirpc.LanguageRuntime/Run`span 🙂 Hence my thought to go a bit deeper. Also, still curious about the memory situation - I'm guessing it correlates with the size/complexity of my stack? I'm just worried about CI/CD constraints in the future.