I'm relatively new to plasma. Want to ask after connecting to the client using Python API pyarrow.plasma
, is there any API to find the remaining available memory of the current plasma object store?
Seems using client.list()
can get all objects and there is size information of each object and I can sum up... but is there any easier way?
When putting data into plasma, if the storage is full, some previous objects will be evicted and this log only appears in the console right? So when running the Python program, users would be unaware that the storage is full and some data is missing?
Hope to get some instructions on this!