Replies: 1 comment 2 replies
-
This may be related to #18997, and #18997 (comment). What version of grpcio are you using? The solution in there was to pin the grpcio python package to 1.57.0 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After upgrading to 1.8.10, I created a sensor to execute freshness checks based on the instructions here.
After the sensor is deployed, I began observing memory leaks. Screenshot below is showing memory usage of the container running one of our code locations.
This has led me to believe that
build_sensor_for_freshness_checks
is somehow causing the memory leak.I haven't done any memory profiling, arrived at this conclusion solely because when I switched off the sensor, the memory leak stopped.
Some folks were saying the memory leak is caused by
grpcio
, when the grpc client connection fails, see this thread: grpc/grpc#36117Can someone with more experience help to review the underlying code of
build_sensor_for_freshness_checks
, and identify any potential circumstances that might lead to memory leak. Thank you very much!Beta Was this translation helpful? Give feedback.
All reactions