Memory Profiler Option Is Super Slow #158
-
Hello! Is it expected or known that For context, running on my local machine (MAC OS) it runs pretty well, but in other envs (i.e: dev, staging), it took 41 minutes to collect 9 samples ( Example of command used: The server was running Also, profiling without the memory option, everything runs fast and without issues. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
When running in memory mode, Austin emits samples only when an RSS delta is observed. My hunch is that in this case the gunicorn master process is not allocating/deallocating much memory. By profiling child processes too with the |
Beta Was this translation helpful? Give feedback.
When running in memory mode, Austin emits samples only when an RSS delta is observed. My hunch is that in this case the gunicorn master process is not allocating/deallocating much memory. By profiling child processes too with the
-C
option you might be able to see much more activity.