How severe does this issue affect your experience of using Ray?
- Medium: It contributes to significant difficulty to complete my task, but I can work around it.
I want to measure the memory usage of my Python code which uses Modin with Ray. Based on the the Memory Management page, the application memory usage consists of 3 parts. I have the following code to measure one of them. How can I complete this code, to have the complete application memory usage?
mem_before = int(c3.Ray.availableResources()["object_store_memory"])
# do some operation
mem_after = int(c3.Ray.availableResources()["object_store_memory"])
return mem_after - mem_before