Hi community,
I am Decheng. I have successfully deployed Verba with a local Weaviate database on my machine. Since Weaviate runs in memory, I want to assign more memory to the Weaviate process using NUMA.
I found that llamaindex can manage vector memory, as shown in this example:
llamaindex Vector Memory Example
In this example, when vector_store
is set to None
, VectorMemory creates a default in-memory vector store. This means all data is stored in memory, providing fast access but using a lot of memory and not persisting data after the program ends.
I want to achieve similar memory management for Weaviate. Does this approach make sense, and can I use a similar method to assign more memory to the Weaviate process via NUMA?
Thank you!